Hi,
I came across this formula that validates an email address:
=AND(FIND("@",A1),FIND(".",A1),ISERROR(FIND(" ",A1)))
It works fine if the "@" or/and dot is missing but it doesn't check for these rules:
- the "@" comes 1st then the dot,
- the "@" and the "." are separated (don't come together)
- Neither of them come as a prefix or as a suffix
- other rules.
I was just wondering, if it's possible- to at least- validate an email address for the previous rules.
Thanks to you all gurus.
(I'm using Excel 2013).
I came across this formula that validates an email address:
=AND(FIND("@",A1),FIND(".",A1),ISERROR(FIND(" ",A1)))
It works fine if the "@" or/and dot is missing but it doesn't check for these rules:
- the "@" comes 1st then the dot,
- the "@" and the "." are separated (don't come together)
- Neither of them come as a prefix or as a suffix
- other rules.
I was just wondering, if it's possible- to at least- validate an email address for the previous rules.
Thanks to you all gurus.
(I'm using Excel 2013).