I have a long list of full names in the "Full Name" Column.
They need to be broken out into 3 separate columns "First Name" "Last Name" and "Title"
Example shown in the screen shot below.
Is there a formula I can use to extract this for each column?
"First Name" I've been using:
=MID([Full Name]@row, FIND(" ", [Full Name]@row) + 1, FIND(" ", [Full Name]@row, FIND(" ", [Full Name]@row) + 1) - FIND(" ", [Full Name]@row) - 2)
"Last Name" I'm using:
=LEFT([Full Name]@row, FIND(",", [Full Name]@row) - 1)
These formulas work ok, but some errors still appear.
I'm struggling most with creating a formula for the "Title" column.
Perhaps something that extracts everything to the right after the second comma?
Any thoughts on a better way to do this?