Rheago
Rheago

Reputation: 99

Google Sheets QUERY FORMULA TRANSPOSE

With the formula "QUERY", I want to convert the data in the "IN" table to the "OUT" table. How should I create the "QUERY" formula?

enter image description here

Upvotes: 0

Views: 66

Answers (1)

Nikko J.
Nikko J.

Reputation: 5543

Try this:

=transpose(flatten(query(A2:B4)))

enter image description here

But this can also be done without query.

=TRANSPOSE(FLATTEN(A2:B4))

enter image description here

Reference:

Upvotes: 1

Related Questions