How can I sort e-mail addresses?

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

Guest

I'm trying to sort a long list of email addresses by the name that follows
the "@". What's the best way to do something like that?
 
I'd select the column and use data|text to columns to extract everything after
the @ symbol. Then sort the data by that column.

Another way...

Copy that column to another column.
Select that new column
Edit|replace
what: *@
with: (leave blank)
replace all

Then sort your data by that column.
 
Genius! Worked perfectly!

Dave Peterson said:
I'd select the column and use data|text to columns to extract everything after
the @ symbol. Then sort the data by that column.

Another way...

Copy that column to another column.
Select that new column
Edit|replace
what: *@
with: (leave blank)
replace all

Then sort your data by that column.
 
Hi I did this too and it workd great. Just wondering though how do you
recombine the now sorted colums so the e-mail addresses are complete?
 
Depending on what's in the cells, this may work:

=a1&"@"&b1

or
=hyperlink("mailto:"&a1&"@"&b1,"Click me")
to make a clickable link.
 

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