Mid/Find Formula Help

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:

  1. "Name": FirstName Last Name
  2. "Email": Email@email.net
  3. "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!

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!