Deepika
It is possible to do this with worksheet functions.
If you want to split the cell at the third comma (as in your example), the two hideous formulas shown below will do it. Strangely enough, these formulas were quite easy and quick to construct. However, there must surely be some shorter and less hideous formulas than these.
Put in cell B1 :-
=LEFT(A1,FIND(MID(MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))),FIND(",",MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))))+1,LEN(MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))))-FIND(",",MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))))),A1)-1)
Put in cell C1 :-
=MID(MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))),FIND(",",MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))))+1,LEN(MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))))-FIND(",",MID(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)),FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))+1,LEN(MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)))-FIND(",",MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1))))))
Celia