I'm writing an If ... then statement but I'm unsure how to write a wildcard in VBA. I want to identify if someone has an @ sign in the field.
If Me.FieldName = "*@*" Then ...
Since I'm checking for an e-mail address, I have characters before and after the AT sign (@). What is the proper signature for multiple wildcards before and after the AT sign?
Thanks in advance.
If Me.FieldName = "*@*" Then ...
Since I'm checking for an e-mail address, I have characters before and after the AT sign (@). What is the proper signature for multiple wildcards before and after the AT sign?
Thanks in advance.