Mulit-line string input into table

Hi @kienerj
I’m not sure that I fully understood your your request. An example of input → aimed output would help…

  1. Do you have a multi-line text in a cell like this one?
    image

  2. And you want to split it in rows. Or do you have a text split in rows?
    ‘Cell Splitter’ node
    delimiter == "\n"
    Then Unpivot
    image

  3. Then, do you want to merge it in a cell?
    ‘Pivoting’
    ‘Column Aggregator’ node
    columns, wildcard == "*_Arr*"
    concatenate, delimiter == "\n"

BR