Extract emails from a string

Sharid

Well-known Member
Joined
Apr 22, 2007
Messages
1,064
Office Version
  1. 2016
Platform
  1. Windows
I have this formula that extracts emails from a string in a row, this works fine.

I need this to run on a command button so when the command button is clicked, the formula is pasted into column B as main times as there are rows in column A with data

e.g column A has 200 rows of data, formula is pasted into column B 200 times,

Code:
=TRIM(RIGHT(SUBSTITUTE(LEFT(A1,FIND(" ",A1&" ",FIND("@",A1))-1)," ",REPT(" ",LEN(A1))),LEN(A1)))

If possible a paste special VALUE only of column B is pasted into column C as column B is a formula.

There is only 1 email per row
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Code:
Private Sub CommandButton1_Click()
Range("B1:B" & Range("A" & Rows.Count).End(xlUp).Row).Formula = "=TRIM(RIGHT(SUBSTITUTE(LEFT(A1,FIND("" "",A1&"" "",FIND(""@"",A1))-1),"" "",REPT("" "",LEN(A1))),LEN(A1)))"
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,588
Messages
6,125,691
Members
449,250
Latest member
azur3

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