No Space in Email field

  • Thread starter Thread starter Harmannus
  • Start date Start date
H

Harmannus

Hallo,

I have a field email with a validation rule: Is Null Or Like "*@*"

How can i expand this rule with the option that no spaces are allowed?

Tried: Is Null Or Like "*@*" Or Not Like " "

But that doesn't work...

Thanx for any tips.

Regards,

Harmannus
 
You need an AND operator to ensure that both are true:
(Like "*@*.*") And (Not Like "* *")
 
Back
Top