Hey all, I have a Userform with textboxes in it. A user can input up to two characters in each. How the values are formatted is dependent on how many characters there are i.e. Empty Textboxes are handled one way, single characters ("A") are handled another and 2 letters ("AB") are handled a separate way. Is there any easy way to sort these?
Right now I have the following code
This takes care of empty text boxes and non empty ones, but I'm hoping to find a way to incorporate single vs 2 initial.
Right now I have the following code
Code:
If TB.Value = "" Then
Set xxxxxxxxxx
Else
Set xxxxxxx
End If
This takes care of empty text boxes and non empty ones, but I'm hoping to find a way to incorporate single vs 2 initial.