Find email addresses in column B and copy them to column C sequentially.

MikeBerlan

New Member
Joined
Aug 20, 2016
Messages
7
I have approximately 1800 agent data files in column B and need to sequentially copy the email addresses into column C. Note: the cell including the email address...E-Mail: jack@abcrealty.com[/B]...etc do not fall on every 8th row because each data file is different. Can someone help with an Excel Formula that can solve my problem?

Column B Column C
Example: John Smith jack@abcrealty.com
ABC Realty nancy@abcrealty.com
123 Adams Street
Jacksonville, FL 01234
Agent
Cell Phone: 123-45-6789
Home Phone: 123-45-6789
Website: www.sellingyourhome.com
E-mail: jack@abcrealty.com

Nancy Smith
ABC Realty
123 Eve Street
Jacksonville, FL 01234
Broker
Cell Phone: 123-45-6789
E-mail: nancy@abcrealty.com
 
If you are looking for a VBA solution, then give this macro a try...
.. or
Rich (BB code):
Sub ExtractEmails()
  With Range("A1", Range("A" & Rows.Count).End(xlUp))
    .AutoFilter Field:=1, Criteria1:="E-mail*"
    .Offset(1).Copy Destination:=.Cells(1, 2)
    .AutoFilter
    .Offset(, 1).Replace What:="*:?", Replacement:="", LookAt:=xlPart
  End With
End Sub
 
Upvote 0

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.

Forum statistics

Threads
1,215,139
Messages
6,123,262
Members
449,093
Latest member
Vincent Khandagale

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