Expression to split these items into rows?

I need a good expression to split this paragraph up (if possible).

Instead I would like a row per - item - starting with (1) or (2) etcโ€ฆ Like this:
2X_3_3f84df9b7980bb7bb909643e39fc5f867a4e41cd.png

Solved Solved
0 42 1,507
1 ACCEPTED SOLUTION

I think you need to do this:

*<<INDEX(   SPLIT(   [ITEM_LIST] , "*" ) , 2 )>>*
<<INDEX(    SPLIT(   INDEX(   SPLIT(   [ITEM_LIST] , "*" ) , 3 ) , "," ) , 1)>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 2 )>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 3 )>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 4 )>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 5 )>>

View solution in original post

42 REPLIES 42

oh. I see.
Then shouldnt this work?
Should it be:
<<Index(SPLIT([ITEM_LIST], "* "), 1)>>
<<Index(SPLIT([ITEM_LIST], โ€œ,โ€), 2)>>
etcโ€ฆ
etcโ€ฆ
etcโ€ฆ

I think you need to do this:

*<<INDEX(   SPLIT(   [ITEM_LIST] , "*" ) , 2 )>>*
<<INDEX(    SPLIT(   INDEX(   SPLIT(   [ITEM_LIST] , "*" ) , 3 ) , "," ) , 1)>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 2 )>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 3 )>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 4 )>>
<<INDEX(    SPLIT(   [ITEM_LIST] , "," ) , 5 )>>

worked PERFECTLY. Thanks so much!

Top Labels in this Space