I have 2 tables (matrixes) for instance
a
b
c
and
x
y
z
I would like to the final result to be
a x
a y
a z
b x
b y
b z
c x
c y
c z
How can it be possible
I have 2 tables (matrixes) for instance
a
b
c
and
x
y
z
I would like to the final result to be
a x
a y
a z
b x
b y
b z
c x
c y
c z
How can it be possible
Desired output is unclear whether it is in a single or separate columns, so I'll provide both outcomes:
=INDEX(FLATTEN(FILTER(A:A, A:A<>"")&" "&TRANSPOSE(FILTER(B:B, B:B<>""))))
=INDEX(SPLIT(FLATTEN(FILTER(A:A, A:A<>"")&" "&TRANSPOSE(FILTER(B:B, B:B<>""))), " "))