delete series of letter in spreadsheet

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a large document that contains thousands of email addresses. I want
to delete the part that becomes before the "@" sign, inlcuding the "@" sign
across the whole spreadsheet. EG: (e-mail address removed) becomes ecollege.com
only. How can I do that?
 
Try this formula in a blank cell where "A1" is the cell containing the email
address. =RIGHT(A1,LEN(A1)-FIND("@",A1,1))
 
Data>Text to Columns>Delimited by>@

Choose to skip importing the first column.


Gord Dibben Excel MVP
 
Kendraa

Assuming your email addresses are in Column A, copy the formula into B1 then

hover the mouse pointer over the bottom right corner of B1. You will see a
black lump and a black cross.

Double-click on that lump to replicate/increment the formula down Column B
until no data in column A.

In B2 it will change to =RIGHT(A2,LEN(A2)-FIND("@",A2,1)) and so on down
Column B.

I would go with Data>Text to Columns>Delimited by>enter the @ sign in "Other"
box.

Make sure you check the "skip" for the first column or have an empty column to
the right of the address column.


Gord Dibben Excel MVP
 
AWESOME
Thank you!!!!!!!!!!!!!!!!!

Gord Dibben said:
Kendraa

Assuming your email addresses are in Column A, copy the formula into B1 then

hover the mouse pointer over the bottom right corner of B1. You will see a
black lump and a black cross.

Double-click on that lump to replicate/increment the formula down Column B
until no data in column A.

In B2 it will change to =RIGHT(A2,LEN(A2)-FIND("@",A2,1)) and so on down
Column B.

I would go with Data>Text to Columns>Delimited by>enter the @ sign in "Other"
box.

Make sure you check the "skip" for the first column or have an empty column to
the right of the address column.


Gord Dibben Excel MVP
 
You're welcome.

Which method did you use?

Formula or Text to Columns?


Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top