Reputation: 7
I don't even know where to begin. I need sheet 1 to create a data that combines rows and columns. basically
on sheet 2 cell A1 should have cat + blue + active
and on sheet 2 cell A2 should have cat + orange + active
Sheet1
row row column
cat blue active
dog orange slow
green
Sheet2
COLUMN1 COLUMN2
ROW 1 catblueactive catblueslow
ROW 2 catorangeactive catorangeslow
ROW 3 catgreenactive catgreenslow
ROW 4 dogblueactive dogblueslow
ROW 5 dogorangeactive dogorangeslow
ROW 6 doggreenactive doggreenslow
I dont know how much information sheet one will have so it may be up to 15 rows long and 10 columns long.
it doesnt need to be on different sheets, i just used for ease of example.
Upvotes: 0
Views: 54
Reputation: 704
It seems you need a Cartesian product between your columns. If you try to avoid VBA, check this link
UPDATE: details about the solution (verified with Excel 2013)
Upvotes: 1