Email?

C

Charlotte E.

Is it possible to test if a given email addresse is valid, using worksheet
formulas (not macros/UDFs)?

What's the formula?


CE
 
C

Claus Busch

Hi Charlotte,

Am Sun, 29 Sep 2013 19:27:57 +0200 schrieb Charlotte E.:
Is it possible to test if a given email addresse is valid, using worksheet
formulas (not macros/UDFs)?

it is easier with regex or UDF.
With formula you have to check the not valid characters, the "@" and the
domain.
Enlarge the formula for your searched domains:
=((COUNT(FIND({"°";"^";"!";"""";"§";"$";"%";"&";"/";"(";")";"=";"?";"{";"[";"]";"}";"\";"*";"+";"~";"'";"#";";";",";":";"<";">";"ä";"ö";"ü"},A1))=0)*(FIND("@",A1)>0)*(COUNT(FIND({".com";".org";".de"},A1))>0)=1)



Regards
Claus B.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top