I am looking to combine values of all possible combinations over 9 columns instead of the 2 that I have the code for which sits in the format of:
Aa aabb
BB bbaa
Cc AACC
Ccbb
.....
......
Could someone please save my life and update this too go over 9 not 2 columns.
This is the code I used for 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))