how to extract content (maybe find and replace)

TLS79

New Member
Joined
Nov 6, 2013
Messages
7
Hi folks,

Have an issue which bothers me for a year now, I receive every month a list with data from our website, users who registered
in one of the cells I have the name and the email address but i need it separated

here are an example of it what i have
charlie pink - tls79@xxx.com
elvies king - tls78@zzz.de

<tbody>
</tbody>
lewis purple - slt80@fff.co.uk

<tbody>
</tbody>

and here what i would like to have
tls79@xxx.com
tls78@zzz.de

<tbody>
</tbody>
slt80@fff.co.uk

<tbody>
</tbody>

<tbody>
</tbody>

any ideas, your help is much appreciated as I do it at the moment manually and we talking about list from 2500 users
 
If your email addresses are always at the end of your text, then that means you always have a space between the dash and the first character of the email address (otherwise the dash would be considered part of the email address as it is a valid email character), so you can use these formulas...

A1: charlie pink - tls79@xxx.com

B1: =LEFT(A1,LEN(A1)-LEN(C1)-3)

C1: =TRIM(RIGHT(SUBSTITUTE(A1," ",REPT(" ",300)),300))

If you only want the email address and do not care about the "full name in front of the dash" part, then just use the formula in C1.
 
Upvote 0

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
There been super suggestions and 3 of them even working! HUHU

but i know everyone is killing me know, and I will start running away at the moment I push the button post!

no that i have written the email address in this field! is there a quick way to remove the formel and keep the email address, that i can convert it to a hyperlink! ( i know how to convert it to a hyperlink) but at is an formular and not text, sound tricky)



and i am running
 
Upvote 0
You can copy the cell with the formula
Then right click the same cell, Paste Special - Values.
 
Upvote 0
ok forget it found it copy and paste values only,


Thanks guys we can close this thread,

who ever from you guys who gave me an answer comes to london, i will pay a pint!
 
Upvote 0

Forum statistics

Threads
1,221,418
Messages
6,159,791
Members
451,589
Latest member
Harold14

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top