3G
Member
Hello-
I've been practicing some text processing with the LEN, MID, FIND, etc formulas, and, am having some problems figuring out how to break out the various data points.
Data is A11:A28 and structured all in one cell as follows:
Firstname Lastname (Nationality) Team
I'm trying to break each section of data out into it's own column:
Here's where I am so far:
B11 =LEFT(A11,(FIND(" (",A11))) - for the whole name
C11 = =LEFT(A11,FIND(" ",A11,1)-1) - for the first name
D11 = =RIGHT(B11,LEN(B11)-FIND(" ",B11,1)) - for the last name
E11 = =MID(A11,((FIND("(",A11))),5) for the Nationality
F11 = =RIGHT(A11,LEN(A11)-FIND(") ",A11,1)) for the team.
My main question is how to use just A11 in the case of the LAST NAME (D11) rather than create another column in B11 of the first and last name.
I've been practicing some text processing with the LEN, MID, FIND, etc formulas, and, am having some problems figuring out how to break out the various data points.
Data is A11:A28 and structured all in one cell as follows:
Firstname Lastname (Nationality) Team
I'm trying to break each section of data out into it's own column:
Here's where I am so far:
B11 =LEFT(A11,(FIND(" (",A11))) - for the whole name
C11 = =LEFT(A11,FIND(" ",A11,1)-1) - for the first name
D11 = =RIGHT(B11,LEN(B11)-FIND(" ",B11,1)) - for the last name
E11 = =MID(A11,((FIND("(",A11))),5) for the Nationality
F11 = =RIGHT(A11,LEN(A11)-FIND(") ",A11,1)) for the team.
My main question is how to use just A11 in the case of the LAST NAME (D11) rather than create another column in B11 of the first and last name.