Good morning,
I have been looking for a calculation to help me pull a word/phrase from a string based on ",".
I don't want to auto delimit these when loading as there is an amount of data in the string I don't need, but the info is set out the same for each line.
I want to pull data between the 2nd & 3rd , but I will then want to pull from between others as I progress, but for the life of me I cant get anything to pull through.
I am currently using the code below, apologies if this is a simple one but it is driving me nuts
thanks in advance
Gavin
I have been looking for a calculation to help me pull a word/phrase from a string based on ",".
I don't want to auto delimit these when loading as there is an amount of data in the string I don't need, but the info is set out the same for each line.
I want to pull data between the 2nd & 3rd , but I will then want to pull from between others as I progress, but for the life of me I cant get anything to pull through.
I am currently using the code below, apologies if this is a simple one but it is driving me nuts
Code:
=TRIM(LEFT(SUBSTITUTE(MID(TabName[Column1],FIND(",",SUBSTITUTE(TabName[Column1],":",",",2))+1,LEN(TabName[Column1])),",",REPT(" ",LEN(TabName[Column1]))),LEN(TabName[Column1])))
String is
CS:20210412000000514,00001535020000034111,13835049,XXXX,Area,Brand,MODEL,,,,BoughtDate,,;
thanks in advance
Gavin