I am attempting to get all possible combinations of any number of series. How would I write a loop to get all the combinations and print them into an excel file?
Input
Series 1 A,B,C
Series 2 1,2,3
Series 3 X,Y,Z
Output
Combo 1 A,1,x
Combo 2 A,2,X
Combo 3 A,3,X
ect....