How do I sort...

R

RickB

A bunch of e-mail addresses by their domain names? I have 600 e-mail
addresses that I need to sort by domain name. How can I sort that?

Thanks,
RickB
 
A

AltaEgo

Use this formula and sort on the result:

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

NOTE: the above assumes the first email address is in cell A1. You will need
to modify all references to A1 and copy down to the rest.
 
R

RickB

Thanks,

I'm closer now!

RickB

AltaEgo said:
Use this formula and sort on the result:

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

NOTE: the above assumes the first email address is in cell A1. You will need
to modify all references to A1 and copy down to the rest.
 

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

Top