+ Reply to Thread
Results 1 to 7 of 7

How do I remove all text to the left of the @ in an email address

  1. #1
    David M
    Guest

    How do I remove all text to the left of the @ in an email address

    How do I remove all text to the left of the @ in an email address? I have a
    column with email addresses and I want to create a new column with just the
    text that is to the right of the @ symbol. In other words, [email protected]
    is the existing data and I want to create a new column with just the msn.com
    string.

  2. #2
    Springbok
    Guest

    RE: How do I remove all text to the left of the @ in an email address

    Hi,

    Assume [email protected] appears in A1. In B1 I would insert the
    following formula: =RIGHT(A1,LEN(A1)-FIND("@",A1,1))

    Cheers,
    Jon

    "David M" wrote:

    > How do I remove all text to the left of the @ in an email address? I have a
    > column with email addresses and I want to create a new column with just the
    > text that is to the right of the @ symbol. In other words, [email protected]
    > is the existing data and I want to create a new column with just the msn.com
    > string.


  3. #3
    David M
    Guest

    RE: How do I remove all text to the left of the @ in an email addr

    Thanks Jon - I look forwars to working through your formula to understand it.

    What I tried in the meantime (and it worked - however it may be just luck)
    was to use Ctrl-H (Replace) and inserted a wild card * in the search for
    string and then replaced it with nothing (resulst into a new column);

    Replace *@ with [nothing] and it worked.

    However - I like yours better as it will probably be more reliable.

    Thanks for the help.

    btw - go the Wallabies!

    ;-)


    "Springbok" wrote:

    > Hi,
    >
    > Assume [email protected] appears in A1. In B1 I would insert the
    > following formula: =RIGHT(A1,LEN(A1)-FIND("@",A1,1))
    >
    > Cheers,
    > Jon
    >
    > "David M" wrote:
    >
    > > How do I remove all text to the left of the @ in an email address? I have a
    > > column with email addresses and I want to create a new column with just the
    > > text that is to the right of the @ symbol. In other words, [email protected]
    > > is the existing data and I want to create a new column with just the msn.com
    > > string.


  4. #4
    Springbok
    Guest

    RE: How do I remove all text to the left of the @ in an email addr

    Thinking of it there are still a number of other methods. Using text to
    columns and @ as the delimiter could also work. :-)

    "David M" wrote:

    > Thanks Jon - I look forwars to working through your formula to understand it.
    >
    > What I tried in the meantime (and it worked - however it may be just luck)
    > was to use Ctrl-H (Replace) and inserted a wild card * in the search for
    > string and then replaced it with nothing (resulst into a new column);
    >
    > Replace *@ with [nothing] and it worked.
    >
    > However - I like yours better as it will probably be more reliable.
    >
    > Thanks for the help.
    >
    > btw - go the Wallabies!
    >
    > ;-)
    >
    >
    > "Springbok" wrote:
    >
    > > Hi,
    > >
    > > Assume [email protected] appears in A1. In B1 I would insert the
    > > following formula: =RIGHT(A1,LEN(A1)-FIND("@",A1,1))
    > >
    > > Cheers,
    > > Jon
    > >
    > > "David M" wrote:
    > >
    > > > How do I remove all text to the left of the @ in an email address? I have a
    > > > column with email addresses and I want to create a new column with just the
    > > > text that is to the right of the @ symbol. In other words, [email protected]
    > > > is the existing data and I want to create a new column with just the msn.com
    > > > string.


  5. #5
    David M
    Guest

    RE: How do I remove all text to the left of the @ in an email addr

    the simpler the better - I like it.



    "Springbok" wrote:

    > Thinking of it there are still a number of other methods. Using text to
    > columns and @ as the delimiter could also work. :-)
    >
    > "David M" wrote:
    >
    > > Thanks Jon - I look forwars to working through your formula to understand it.
    > >
    > > What I tried in the meantime (and it worked - however it may be just luck)
    > > was to use Ctrl-H (Replace) and inserted a wild card * in the search for
    > > string and then replaced it with nothing (resulst into a new column);
    > >
    > > Replace *@ with [nothing] and it worked.
    > >
    > > However - I like yours better as it will probably be more reliable.
    > >
    > > Thanks for the help.
    > >
    > > btw - go the Wallabies!
    > >
    > > ;-)
    > >
    > >
    > > "Springbok" wrote:
    > >
    > > > Hi,
    > > >
    > > > Assume [email protected] appears in A1. In B1 I would insert the
    > > > following formula: =RIGHT(A1,LEN(A1)-FIND("@",A1,1))
    > > >
    > > > Cheers,
    > > > Jon
    > > >
    > > > "David M" wrote:
    > > >
    > > > > How do I remove all text to the left of the @ in an email address? I have a
    > > > > column with email addresses and I want to create a new column with just the
    > > > > text that is to the right of the @ symbol. In other words, [email protected]
    > > > > is the existing data and I want to create a new column with just the msn.com
    > > > > string.


  6. #6
    Gord Dibben
    Guest

    Re: How do I remove all text to the left of the @ in an email address

    David

    Copy the column then on the copied column.

    Data>Text to Columns>Delimited by "other". Enter the @ sign.

    Import whichever column you want and Finsish.


    Gord Dibben Excel MVP

    On Tue, 1 Mar 2005 01:01:03 -0800, "David M" <David
    [email protected]> wrote:

    >How do I remove all text to the left of the @ in an email address? I have a
    >column with email addresses and I want to create a new column with just the
    >text that is to the right of the @ symbol. In other words, [email protected]
    >is the existing data and I want to create a new column with just the msn.com
    >string.



  7. #7
    David M
    Guest

    Re: How do I remove all text to the left of the @ in an email addr

    Thanks Gord!

    "Gord Dibben" wrote:

    > David
    >
    > Copy the column then on the copied column.
    >
    > Data>Text to Columns>Delimited by "other". Enter the @ sign.
    >
    > Import whichever column you want and Finsish.
    >
    >
    > Gord Dibben Excel MVP
    >
    > On Tue, 1 Mar 2005 01:01:03 -0800, "David M" <David
    > [email protected]> wrote:
    >
    > >How do I remove all text to the left of the @ in an email address? I have a
    > >column with email addresses and I want to create a new column with just the
    > >text that is to the right of the @ symbol. In other words, [email protected]
    > >is the existing data and I want to create a new column with just the msn.com
    > >string.

    >
    >


+ 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