input mask for email addresses

B

BRC

Has anyone seen a good input mask for email address that will catch input
errors like "," instead of "." etc?
Thanks BRC
 
A

Allen Browne

Try something like this in the Validation Rule of the field in the table:
Is Null Or ((Like "*?@?*.?*") And (Not Like "*[ ,;]*"))
 
Top