I have this indexed @row info to a column named "AR" (Format will always be like this and no middle name). I need to split First two words to column named "Name", Split email to column named "Email" and split phone number to column named "Phone".
FirstName LastName Email@email.net 888-888-8888
Split to 3 columns:
- "Name": FirstName Last Name
- "Email": Email@email.net
- "Phone": 888-888-8888
I have this formula for the Name, but it is not working.
=MID(AR@row, 1, FIND(" ", AR@row) - 1) + MID(AR@row, FIND(" ", AR@row) + 1, FIND(" ", AR@row, FIND(" ", AR@row) + 1) - FIND(" ", AR@row))
I've also tried this in the Name column, but it only returns the first name:
=LEFT(AR@row, FIND(" ", AR@row, FIND(" ", AR@row)))
Thanks!