I want to combine the content of three columns into one column like in this example:
Col1 Col2 Col3
A 1 x
B 2 Y
So the result is a column with 8 lines like this:
Result
A 1 X
A 1 Y
A 2 X
A 2 Y
B 1 X
B 1 Y
B 2 X
B 2 Y
I need a Google Sheets command to do it, not a Spreadsheet solution because the result values must change automatically when using the sheet.
I have already tried with COMBINE
and JOIN
without much success.
If, alternatively, you show me how to combine only two of the three columns, I then could combine the third one in a second step.