Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

Email Validation Calculation


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

Recommended Posts

Posted

Does anybody have a good validation calculation for email address, a bit better than this one:

If(PatternCount(email, " "),0, 1)

Cheers,

Huw.

Posted

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.

Posted

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,"

This topic is 7770 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.