Forum Discussion
sumitctm
Oct 05, 2017Copper Contributor
how to validate that email address format is correct or not in xls
Actually, I want to validate the below-given email address format in xls. if the format is correct which means yes then I have to update the value with respect to the email id as true else fals...
SergeiBaklan
Jul 24, 2021Diamond Contributor
Just in case, another notation for your formula could be
=ISNUMBER(FIND(".",D2))*
ISNUMBER(FIND(".",D2, FIND("@",D2)))*
NOT(ISNUMBER(FIND(" ",D2)))*
NOT(ISNUMBER(FIND(",",D2)))
juanjorge
Jul 26, 2021Copper Contributor
SergeiBaklan Thank you. I tried your formula with 3k emails and it gives the same results as mine, difference is that my formula outputs "TRUE" or "FALSE" while yours outputs "1" or "0". And yours is shorter, its nice to have an alternative.