+ Reply to Thread
Results 1 to 14 of 14

Extract Text--Hopefully Easy!

  1. #1
    Registered User
    Join Date
    06-08-2005
    Posts
    9

    Unhappy Extract Text--Hopefully Easy!

    i have an e-mail address that I would like to extract the text after the @ sign. Cannot use text to columns. Need a function so that way every time I enter an email address, it will continually be updating instead of actually going through and using the text to columns option each time.

    Any help would be great!

  2. #2
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996
    Try this (if the address is in cell A1):

    =IF(ISERROR(FIND("@",A1)),"Invalid Email",MID(A1,FIND("@",A1)+1,255))
    Does that help?

    Regards,
    Ron

  3. #3
    Registered User
    Join Date
    06-08-2005
    Posts
    9
    it worked...Thank you soooo much!!!

  4. #4
    Registered User
    Join Date
    06-08-2005
    Posts
    9
    it worked...however i was wondering if you could explain why it worked???

  5. #5
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  6. #6
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  7. #7
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  8. #8
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  9. #9
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  10. #10
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  11. #11
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  12. #12
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  13. #13
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




  14. #14
    Vasant Nanavati
    Guest

    Re: Extract Text--Hopefully Easy!

    =RIGHT(A1,LEN(A1)-FIND("@",A1))

    --

    Vasant

    "rae820" <[email protected]> wrote in
    message news:[email protected]...
    >
    > i have an e-mail address that I would like to extract the text after the
    > @ sign. Cannot use text to columns. Need a function so that way every
    > time I enter an email address, it will continually be updating instead
    > of actually going through and using the text to columns option each
    > time.
    >
    > Any help would be great!
    >
    >
    > --
    > rae820
    > ------------------------------------------------------------------------
    > rae820's Profile:

    http://www.excelforum.com/member.php...o&userid=24135
    > View this thread: http://www.excelforum.com/showthread...hreadid=378561
    >




+ 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