Hi Janna,
If you want to split data using text to column option then you have to enter data first.
But you can use this formula for splitting data. The data will be starting from cell A2. The results will be in B2, C2 and D2.
1.If the data is seperated by a comma, type this formula in the formula bar for B2.
=LEFT(A2,IF(ISERROR(FIND(",",A2,1)),LEN(A2),FIND(",",A2,1)-1))
2.Type this formula in the formula bar for C2.
=TRIM(IF(ISERROR(FIND(",",A2,1)),A2,MID(A2,FIND(",",A2,1)+1,
IF(ISERROR(FIND(" ",A2,FIND(",",A2,1)+2)),LEN(A2),
FIND(" ",A2,FIND(",",A2,1)+2))-FIND(",",A2,1))))
3.Type this formula in the formula bar for D2.
=TRIM(RIGHT(A2,LEN(A2)-IF(ISERROR(FIND(" ",A2,
FIND(" ",A2,FIND(",",A2,1)+2))),LEN(A2),
FIND(" ",A2,FIND(" ",A2,FIND(",",A2,1)+2))-1)))
Make sure that the data is seperated by a comma.
If this process takes too much time then i think you have to use visual basic codes.