joeserrone
The cat of the cul-de-sac
- Local time
- Today, 09:59
- Joined
- Dec 17, 2006
- Messages
- 164
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 ......