Extracting an email address from a cell with multiple email addresses

kmholm

New Member
Joined
Nov 2, 2015
Messages
2
I have a string that contains text including two different email addresses. I need to extract only the email that comes last. I was able to use a function to get the email but it's the first email not the 2nd one. Any help would be appreciated. Thanks!
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
The text file includes information such as company address, anniversary date, manager email, manager location, employee email. All separated by spaces. Example: Company Name Company Rep Street Address Manager Name Manager Email Employee Name Employee Email Employee Address Anniversary Date
 
Upvote 0
Try this:

=TRIM(MID(SUBSTITUTE(A1," ",REPT(" ",255)),FIND("ß",SUBSTITUTE(SUBSTITUTE(A1,"@","ß",2)," ",REPT(" ",255)))-255,500))
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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