I'm trying to get an integer value from another cell, A1, into my Google Sheets query:
=QUERY(B:F; "select B where F > "& A1 &"limit 1")
I get this error:
PARSE_ERROR: Encountered " "," ", "" at line 1, column 27. Was expecting one of: "group" ...
A1 contains a function =B1+C1 and that returns an integer. Though this query works if A1 is a hard-coded value like 100. I am not sure what is causing this error could be a parsing error or query error. Does anyone know how to fix it?
NOTES:
The referred cell, A1, has currency formatting in swedish krona(kr) that's not something custom. The regional settings are set to Sweden.
