I need a formula for crystal that would parse out the first word, then another for the second word and another for the third word.
The description will always be delimmited by commas.
My goal is to parse them into 3 different columns.
I can now do this in excel, but I want to do it crystal, before exporting to excel.
Here is the example for excel-
For this cell containing AIR CONDITIONING UNIT, SPLIT, COMPUTER ROOM UNIT
AIR CONDITIONING UNIT
=TRIM(MID(SUBSTITUTE("," & $N1&REPT(",",6),",",REPT(" ",255)),1*255,255))
SPLIT
=TRIM(MID(SUBSTITUTE("," & $N1&REPT(",",6),",",REPT(" ",255)),2*255,255))
COMPUTER ROOM UNIT
=TRIM(MID(SUBSTITUTE("," & $N1&REPT(",",6),",",REPT(" ",255)),3*255,255))
For the 3rd word change from 2*255 to 3*255
referenced
Thanks
tav
The description will always be delimmited by commas.
My goal is to parse them into 3 different columns.
I can now do this in excel, but I want to do it crystal, before exporting to excel.
Here is the example for excel-
For this cell containing AIR CONDITIONING UNIT, SPLIT, COMPUTER ROOM UNIT
AIR CONDITIONING UNIT
=TRIM(MID(SUBSTITUTE("," & $N1&REPT(",",6),",",REPT(" ",255)),1*255,255))
SPLIT
=TRIM(MID(SUBSTITUTE("," & $N1&REPT(",",6),",",REPT(" ",255)),2*255,255))
COMPUTER ROOM UNIT
=TRIM(MID(SUBSTITUTE("," & $N1&REPT(",",6),",",REPT(" ",255)),3*255,255))
For the 3rd word change from 2*255 to 3*255
referenced
Thanks
tav