Hi,
I am trying to process some data from an external application. My starting table looks like this…
Col0 - Col1
“first line text” - “111;222”
“second line text” - “111;333;444”
I would like to split the values in Col1 and append a new row for each value …
Col0 - Col1
“first line text” - “111”
“first line text” - “222”
“second line text” - “111”
“second line text” - “333”
“second line text” - “444”
Any suggestions? Thanks.