Combination Generator

Hi everyone,
I have 2 columns with type EnumList and I want to create a virtual column that gives me all possible combinations.
For example:
Column1 has “A , B , C”
Colmun2 has “1 , 2”
Virtual column should have “A:1 , B:1 , C:1 ,A:2 , B:2 , C:2”
Is that possible with AppSheet ?
Thank you

0 2 1,230
2 REPLIES 2

Hi,
First option I thought about is concatenate( ) but it will probably connect all values from columns with ‘columns’ order. By ‘columns’ order I mean:
Col 1: A, B, C
Col 2: 1, 2, 3
concatenate( ) = A, B, C, 1, 2, 3
If that’s is enough no problem. If not, we have to dive deeper. I suppose there is a way to achieve that involving the key column.

You might be able to modify this tip to do so:

Or you can do it as a GSheet formula:

Top Labels in this Space