I have three columns, each of which has different kinds of master data as shown below:
Now, I want to have all possible combinations of these three cells - like
aa kk jj
aa kk ff
aa ll jj
aa ll ff
aa mm jj
...
Can this be done with a formula. I found one formula with 2 columns, but i'm not able to extend it to 3 columns correctly
Formula with 2 columns:
=IF(ROW()-ROW($G$1)+1>COUNTA($A$2:$A$15)*COUNTA($B$2:$B$4),"",
INDEX($A$2:$A$15,INT((ROW()-ROW($G$1))/COUNTA($B$2:$B$4)+1))&
INDEX($B$2:$B$4,MOD(ROW()-ROW($G$1),COUNTA($B$2:$B$4))+1))
where G1 is the cell to place the resulting value