J
joeserrone
I have a VBA code similar to this one:
If Me. Account = "?" or Me.Account = Null Then
Me.AllowEdits = True
Else.....
However, many times the field tagged as ? can also come up with
multiple ????????. So I need to create and IF statement that will look
at the first character of the Account field, if the Account starts with
? then ......
If Me. Account = "?" or Me.Account = Null Then
Me.AllowEdits = True
Else.....
However, many times the field tagged as ? can also come up with
multiple ????????. So I need to create and IF statement that will look
at the first character of the Account field, if the Account starts with
? then ......