This proposed solution employs a helper column which may be hidden for aesthetic purposes.
The formula for the helper column (E) is:
Formula:
=LEN(TRIM(A2))-LEN(SUBSTITUTE(TRIM(A2)," ",""))
The formula for column B is:
Formula:
=LEFT(TRIM(A2),FIND(CHAR(7),SUBSTITUTE(TRIM(A2)," ",CHAR(7),E2-1)))
The formula for column C is:
Formula:
=MID(TRIM(A2),FIND(CHAR(7),SUBSTITUTE(TRIM(A2)," ",CHAR(7),E2-1)),FIND(CHAR(7),SUBSTITUTE(TRIM(A2)," ",CHAR(7),E2))-FIND(CHAR(7),SUBSTITUTE(TRIM(A2)," ",CHAR(7),E2-1)))
The formula for column D is:
Formula:
=RIGHT(TRIM(A2),LEN(TRIM(A2))-FIND(CHAR(7),SUBSTITUTE(TRIM(A2)," ",CHAR(7),E2)))
Let us know if you have any questions.
Bookmarks