validating an email address

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I need to create an input mask that will make sure that the data entered
into the field is an email address ie. it has a @ in the string of
characters, is there any way to do this?

Thanks

Julie
 
Try a validation rule of something like this:
Is Null Or ((Like "*?@?*.?*") And (Not Like "*[ ,;]*"))
 
Back
Top