How to take only certain columns from a FILTER result?
When you are QUERYing a computed array, you need to use the Colx notation rather than column letters: =QUERY(FILTER(B:D,D:D>=2),”select Col2, Col1″) which incidentally can be achieved by just using the QUERY: =QUERY(B:D,”select C, B where D >= 2″) or just FILTER: =FILTER({C:C,B:B},D:D>=2)