Could anyone offer advice on how I would go about accomplishing this task? I'm trying to format two textbox fields on my userform that when the user inputs data into it, it would automatically show the "symbols, dashes and/or spaces accordingling".
The first textbox field (TextBox9) I need to end up looking like this, with the numbers and/or letters changing by user input.
example: (MI) A000-000-000-000
The next textbox Field (TextBox10) I need to end up with this type of result:
example: (MI ID) A000-000-000-0
I was trying something like this code: but I'm not familiar enough with the formatting symbols to accomplish this task. Any help would be appreciated!
Private Sub TxtProperty_Exit(ByVal Cancel As MSForms.ReturnBoolean)
TextBox9 = Format(TextBox9, "(##)�-000-000-000")
End Sub
Bookmarks