hjenkins Posted August 7, 2003 Posted August 7, 2003 Does anybody have a good validation calculation for email address, a bit better than this one: If(PatternCount(email, " "),0, 1) Cheers, Huw.
ernst Posted August 7, 2003 Posted August 7, 2003 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.
-Queue- Posted August 7, 2003 Posted August 7, 2003 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,"
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now