+ Reply to Thread
Results 1 to 3 of 3

Excel 2003 - How to extract domain names frm email

  1. #1
    Registered User
    Join Date
    06-24-2008
    Posts
    1

    Excel 2003 - How to extract domain names frm email

    Hi,

    I got a list of customers emails and would like to extract their domain names frm the email list.

    If I'm gonna used the RIGHT function, the result wouldn't be correct since different domains have diff chars length.

    Example as follows:-

    [email protected]
    [email protected]
    [email protected]
    [email protected]
    [email protected]

    ==> How do I extract the domain name after the @.

    Your help is highly appreciated. tq.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678
    =MID(A1, FIND("@", A1) + 1, 255)

  3. #3
    Forum Expert
    Join Date
    12-10-2006
    Location
    Sydney
    MS-Off Ver
    Office 365
    Posts
    3,525
    Hi bebas78,

    The following formula will do the job (just change the starting reference from A2 to suit):

    =MID(A2,SEARCH("@",A2)+1,LEN(A2)-SEARCH("@",A2)+1)

    HTH

    Robert

+ 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