Transpose in pairs

Hi friends,

I have a more complicated problem, but the simplified version is this:

If I have a (1 row x 90 cols) table, how can I transpose it to a (45 row x 2 cols) table?

Example: Table A: 1 2 3 4 5 6 7 8 9 10

becomes Table B:

1 2

3 4

5 6

7 8

9 10

For two rows, such as Table C:

1 2 3 4

5 6 7 8

Transposed Table D would look like this:

1 2 5 6

3 4 7 8

Thanks in advance.

Hi Marcellus,

for the first use case, you first need to transpose the data and than use a Column to Grid node.

The second use case C->D

you can achieve it by using a chunk loop start, a transpose, a column to grid and finally a loop end column append.

Cheers, IrisĀ 

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.