Not an actual question, was getting no results in searching for the answer on the internet, but I figured it out! Maybe it can help someone along the way. Please don't punish me for posting a answer.
[/code]
Sub stringnumtest()
Dim thatsaletter As Boolean
somestring = "2p"
thatsaletter = IsNumeric(Right(somestring, 1))
If thatsaletter = True Then
MsgBox "yes"
Else
MsgBox "no"
End If
End Sub
[/code]
Sub stringnumtest()
Dim thatsaletter As Boolean
somestring = "2p"
thatsaletter = IsNumeric(Right(somestring, 1))
If thatsaletter = True Then
MsgBox "yes"
Else
MsgBox "no"
End If
End Sub
Code:
You could obviously use any variation of string handling where the "right" function exists. Happy Friday!