I need to validate an email field in a table in Access 2010. I tried:
Is Null OR ((Like "*?@?*.?*") AND
(Not Like "*[ ,;]*"))
but this did not work.
I need to validate an email field in a table in Access 2010. I tried:
Is Null OR ((Like "*?@?*.?*") AND
(Not Like "*[ ,;]*"))
but this did not work.
It appears that your database is in
ANSI 92
mode, and when you pasted in the rule......Access automatically changed
Like
toALike
, producing...The problem is that
ALike
uses the ANSI wildcard characters, so you need to change the rule to