Hello,
I have a bunch of cells in this format
NYC,TARGET,LUX
TARGET
NYC,TARGET,FRA,DUB
i.e some with a single item, some with 4 as in the last case. I need to seperate them into different columns.
I used this code for seperating them with an instance of a single item
and this to get in between the first and 2nd comas:
To get the item after the 3rd coma, i used this
My real issue is i cant seem to get the code right to parse the text between the 2nd and 3rd comas.
Thank you in advance
I have a bunch of cells in this format
NYC,TARGET,LUX
TARGET
NYC,TARGET,FRA,DUB
i.e some with a single item, some with 4 as in the last case. I need to seperate them into different columns.
I used this code for seperating them with an instance of a single item
Code:
IFERROR(LEFT(Q12,FIND(",",Q12)-1),Q12)
Code:
=IFERROR(IFERROR(LEFT((MID(Q13,FIND(",",Q13)+1,LEN(Q13)-LEN(U13)-1)),FIND(",",MID(Q13,FIND(",",Q13)+1,LEN(Q13)-LEN(U13)-1))-1),MID(Q13,FIND(",",Q13)+1,LEN(Q13)-LEN(U13)-1)),"")
To get the item after the 3rd coma, i used this
Code:
=IFERROR(RIGHT(Q12,LEN(Q12)-FIND(",",Q12,FIND(",",Q12,1)+1)-FIND(",",Q12,FIND(",",Q12,1)+1)+1),"")
My real issue is i cant seem to get the code right to parse the text between the 2nd and 3rd comas.
Thank you in advance