excel email validation formula

前端 未结 4 805
心在旅途
心在旅途 2020-12-08 16:04

I have a column where people enter email address manually. I want to validate the email address using this formula:

=AND(FIND(“@”,A2),FIND(“.”,A2),ISERROR(FI         


        
4条回答
  •  Happy的楠姐
    2020-12-08 16:17

    =AND(IFERROR(FIND(".",A2),FALSE),IFERROR(FIND(".",A2,FIND("@",A2)),FALSE))

    This will validate the . is after the @ which is not tested on the accepted answer

提交回复
热议问题