Home > OS >  How to select specific columns from array in Google Sheets query?
How to select specific columns from array in Google Sheets query?

Time:04-11

Let's say you only wanna select the first column. Cannot, it says 'NO_COLUMN: A'.

=query({O2:P4;O8:P9},"select A")  

enter image description here enter image description here

It is easy to select ALL columns.

=query({O2:P4;O8:P9},"select *")

enter image description here

CodePudding user response:

use:

=QUERY({O2:P4;O8:P9}, "select Col1")
  • Related