Create all combinations of data from two columns

I have a table with values A and B in a column and table with values 1,2 and 3 in a column.
Now I like to make all possible combinations in a new table.
So result should be table with two columns
A-1
A-2
A-3
B-1
B-2
B-3

I tried it with Loop start and Loop end , but did not succeed.

Anyone an idea?

Cross Joiner has to work for you

6 Likes

Thanks, it did the trick

2 Likes

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