How to split collection into more rows

Hi,

I have a table like this:

A B C
X [1,2,3] [4,5,6]

i want a result table like this:

A B C
X 1 4
X 2 5
X 3 6

Anyone can help me? Thanks

With the Ungroup node.

Cheers, Iris
 

1 Like

Thanks