How do you sort a column of email addresses by domain name in Exc.

  • Thread starter Thread starter Guest
  • Start date Start date
Hi Andy

One way is to use a helper column with a formula like this
A1 have the email address

=MID(B1,SEARCH("@",B1,1),255)

Sort on the B column now
 
How does this work?
Thanks
-----Original Message-----
Hi Andy

One way is to use a helper column with a formula like this
A1 have the email address

=MID(B1,SEARCH("@",B1,1),255)

Sort on the B column now


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Andy R" <Andy (e-mail address removed)> wrote in
message (e-mail address removed)...
 
Hi Karin

=MID(B1,SEARCH("@",B1,1),255)

Mid use the Search function to give you the the first charcter of @
This is the start character
The 255 is the number of characters it will display(a lower number is Ok also)
 

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