Jump to content

Email Validation Calculation


hjenkins

This topic is 7590 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hey Huw,

I thought about this one and it seems hard to do this in one calculation.

You could quit easily check on the @ and .

But I'd rather script this and have the entry via a 'custom dialog' followed by a set of 'check'-steps.

Regards,

Ernst.

Link to comment
Share on other sites

From a post by AndriesV two years ago (and cleaned up a bit):

If(IsEmpty(EmailField), 1,

Case(

PatternCount(EmailField," "), 0,

PatternCount(EmailField,","), 0,

PatternCount(EmailField,";"), 0,

PatternCount(EmailField,":"), 0,

PatternCount(EmailField,"

Link to comment
Share on other sites

This topic is 7590 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.