Hi,
I am currently working on a workflow, where I need to combine values from multiple columns into a single column.
The amount of input columns changes based on the input file. Sometimes it´s 3 columns, sometimes 16. The data type of the columns is path.
Here is an example of what the input data looks like input data.
column1 column2 column3
ABC.jpg DEF.jpg GHI.jpg
JKL.jpg MNO.jpg PQR.jpg
… … …
This is what the output column should look like. The order of the values does not matter, all that matters, is that the values are in one column
OutputColumn
ABC.jpg
DEF.jpg
GHI.jpg
JKL.jpg
MNO.jpg
PQR.jpg
…
I could not wrap my head around this one and could not find any help online yet.
I hope someone can help me out. Thanks in advance!