+ Reply to Thread
Results 1 to 6 of 6

Valid email id check

  1. #1
    Registered User
    Join Date
    06-25-2007
    Posts
    9

    Valid email id check

    Hi,
    Is there a quick way I can check if the email id in excel is valid or no. I have a list of 21,000 email ids.
    Thanks

  2. #2
    Forum Expert
    Join Date
    01-12-2007
    Location
    New Jersey
    Posts
    2,127
    What are the criteria for an email being considered valid?

  3. #3
    Registered User
    Join Date
    06-25-2007
    Posts
    9
    hi,
    it should have a domain name and .com. For example:

    luxmraj@omron.com.

    Thanks

  4. #4
    Forum Expert
    Join Date
    01-12-2007
    Location
    New Jersey
    Posts
    2,127
    You can use Data Validation.

    Assuming the entry will be in cell A1, use this custom data validation:

    =AND(ISNUMBER(FIND("@",A1)),ISNUMBER(SEARCH(".COM",A1)))

    Let me know if that works for you.

    EDIT: I just reread your request and realized that you want to check existing entries to see if they are legit emails. Just nest the validation formula into an IF statement.

    So, in a column next to the email address column, use the formula:

    =IF(AND(ISNUMBER(FIND("@",A1)),ISNUMBER(SEARCH(".COM",A1))),"VALID EMAIL","INVALID EMAIL")
    Last edited by BigBas; 08-25-2007 at 02:54 AM.

  5. #5
    Registered User
    Join Date
    07-20-2011
    Location
    Kerala, India
    MS-Off Ver
    Excel 2013
    Posts
    93

    Re: Valid email id check

    Great job! Can someone please help with more validations?

    I have more validation to be made: That the email address should not contain any non-English characters other than alphabets, numbers, periods(.), hyphens(-) and underscores(_).
    where (.COM) is not must, but ("." [period] and "@" ) is for sure.


    Please help me out

  6. #6
    Valued Forum Contributor janmorris's Avatar
    Join Date
    07-24-2021
    Location
    Japan
    MS-Off Ver
    Google Sheets (& Mac 2021)
    Posts
    1,141

    Re: Valid email id check

    @kjxavier

    this is an old topic... start your own NEW topic so that people notice it as such

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1