Hi
I need to make a list of unique combinations from a series of variables
I have 5 variables, A, B, C, D, E
These can hold 5 unique values each (A1, A2, A3, A4, A5, B1, B2, B3 etc etc)
from these variables I want to make a list of all unique cominations that these variables and values can generate, like this
A1B1C1D1E1
A2B1C1D1E1
A3B1C1D1E1
.
.
.
A1B2C1D1E1
A1B3C1D1E1
.
.
.
A5B5C5D5E5
How do I do this?
Thank you in advane
Bookmarks