I am trying to create a list of rows in a larger table that are missing data. to do this I wrote
=QUERY(Sheet1!A2:J361,"Select A:E, I where J is null")
to retrieve rows without data in column J. This returned the error
Unable to parse query string for Function QUERY parameter 2:
PARSE_ERROR: Encountered " <UNEXPECTED_CHAR> ": "" at line 1, column 9.
sample data:
|Lab # |Site|Block|Plot|Rep |Treatment| Lower Depth|Upper Depth|Depth (cm) |Sample bag wet (g)|
|:-----|:---|:----|:---|:---|:--------|:-----------|:----------|:-----------|:-----------------|
3100|SFREC/WLIC|1|1|1|Compost + Biochar| 0| 10| 0-10| 622.17|
3101|SFREC/WLIC| 1| 1| 1| Compost + Biochar |10 |20 |10-15| 157.58
3102|SFREC/WLIC|1|1|1|Compost + Biochar|20|30|20-30|
3103|SFREC/WLIC|1|1|2|Compost + Biochar|0|10|0-10|430.18
3105|SFREC/WLIC|1|1|2|Compost + Biochar|20|30|20-30|
expected result:
|Lab # |Site|Block|Plot|Rep |Depth (cm)|
|:-----|:---|:----|:---|:---|:--------|
3102|SFREC/WLIC|1|1|1|20-30|
3105|SFREC/WLIC|1|1|2|20-30|
:in the query. UseA, B, C, D, Einstead. Or build the string dynamically.