This one should be easy. Just trying to apply some crude check on a userform to ensure that the end users are entering the text as
19"
20"
22"
etc
key is the " at the end
Here's what I've done to check that its 3 digits.
How can I check the string to ensure it has the " at the end? I've tried Find, but it doesn't appear to work with ".
19"
20"
22"
etc
key is the " at the end
Here's what I've done to check that its 3 digits.
Code:
'check for a part size length
If Len(Me.TextSize.Value) <> 3 Then
Me.TextSize.SetFocus
MsgBox "Part Size is not 3 digits. Please ensure it's entered as 19"""
Exit Sub
End If
How can I check the string to ensure it has the " at the end? I've tried Find, but it doesn't appear to work with ".