Parsing data out from a single multi-line cell

ExcelBrent

New Member
Joined
Oct 17, 2022
Messages
4
Office Version
  1. 365
Platform
  1. Windows
I have a data coming form submits to Google Sheets through Zapier email action. The data comes into 1 column and 1 row for each submission. The cell data looks like the following between the quotes:

"You have received a new form submission.
Be sure to follow up with this lead as soon as possible.

* Name: John Smith
* Email: johnsmith@email.com
* Phone: +1 (555) 555-555
* Seeking: Support Help

This lead has been provided by Website Name."

Based on the above multi-line cell data that is pure text as seen, how would I be able to parse out the data for Name, Email, Phone and Seeking into their own columns on the same row?

Any help is greatly appreciated.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
MrExcelPlayground17.xlsx
ABCDE
1You have received a new form submission. Be sure to follow up with this lead as soon as possible. * Name: John Smith * Email: johnsmith@email.com * Phone: +1 (555) 555-555 * Seeking: Support Help This lead has been provided by Website Name.John Smithjohnsmith@email.com+1 (555) 555-555Support Help
Sheet3
Cell Formulas
RangeFormula
B1B1=TEXTBEFORE(TEXTAFTER(A1,"* Name: "),CHAR(10))
C1C1=TEXTBEFORE(TEXTAFTER(A1,"* Email: "),CHAR(10))
D1D1=TEXTBEFORE(TEXTAFTER(A1,"* Phone: "),CHAR(10))
E1E1=TEXTBEFORE(TEXTAFTER(A1,"* Seeking: "),CHAR(10))
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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