dougsworth
Technical User
I have a single column of data in the format:
<subject>, <user name>, <date>, <time>
What i'd like is to be able to separate these so that the values are displayed in single cells.
Eg, A1: <subject>, <user name>, <date>, <time>
b2: <subject>
c3: <user name>
d4: <date>
e5: <time>
I can get the <subject> to display in B2 correctly by using the following formula in B2
But can't get it to work for the other data i want
Anyone ideas as how to do this? Any help much appreciated
Jason
<subject>, <user name>, <date>, <time>
What i'd like is to be able to separate these so that the values are displayed in single cells.
Eg, A1: <subject>, <user name>, <date>, <time>
b2: <subject>
c3: <user name>
d4: <date>
e5: <time>
I can get the <subject> to display in B2 correctly by using the following formula in B2
Code:
=LEFT(A2,IF(ISERROR(FIND(",",A1,1)),LEN(A1),FIND(",",A1,1)-1)
But can't get it to work for the other data i want
Anyone ideas as how to do this? Any help much appreciated
Jason