andrew_milonavic
Board Regular
- Joined
- Nov 16, 2016
- Messages
- 98
Hi Everyone,
I'd like to combine all possible combinations (text) from a single column into another.
I was able to find this formula
which works perfectly for two columns of data but I wasn't able to make it work for just one column of data.
Hope you guys can help!
Thanks
Andrew
I'd like to combine all possible combinations (text) from a single column into another.
I was able to find this formula
Code:
=IF(ROW()-ROW($F$1)+1>COUNTA(A:A)*COUNTA(B:B),"",INDEX(A:A,INT((ROW()-ROW($F$1))/COUNTA(B:B)+1))&INDEX(B:B,MOD(ROW()-ROW($F$1),COUNTA(B:B))+1))
Hope you guys can help!
Thanks
Andrew