Is it possible to use Google Sheets' =query
to select only a specific row range, e.g. rows 38 to 57 of sheet1?
How to query for row range in Google Sheets?
21.8k views Asked by orschiro At
2
Is it possible to use Google Sheets' =query
to select only a specific row range, e.g. rows 38 to 57 of sheet1?
=QUERY(FILTER(A1:B,ROW(A:A)>=4,ROW(A:A)<=8),"select Col1, Col2")
The query syntax has no option to use rows in
where
clause. I suggest usingquery
+filter