Formula to extract doamin names form email address,s

O

Ox

I have a large list of email address and would like to group them by
the doamin that they came from

I would like to add another collum and and list the doamin names in
this

collum A collum B
ie (e-mail address removed) abc.com

does any one have a formula to do this
 
D

Dave Peterson

You could use a formula, but I wouldn't.

I'd copy that column of data into another column.

Then select the new column
Edit|Replace
what: *@
with: (leave blank)
replace all

===
But you could use a formula like:
=mid(a1,search("@",a1)+1,255)
(255 is just a big enough number to grab everything to the right of the @ sign).
 
R

Ron Rosenfeld

I have a large list of email address and would like to group them by
the doamin that they came from

I would like to add another collum and and list the doamin names in
this

collum A collum B
ie (e-mail address removed) abc.com

does any one have a formula to do this


=MID(A1,FIND("@",A1)+1,255)

--ron
 
O

Ox

You could use a formula, but I wouldn't.

I'd copy that column of data into another column.

Then select the new column
Edit|Replace
what:  *@
with:  (leave blank)
replace all

===
But you could use a formula like:
=mid(a1,search("@",a1)+1,255)
(255 is just a big enough number to grab everything to the right of the @sign).


Thank You all for your assistance problem has been solved
 

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