i have a question regarding the query statement using a named range in Google Sheet.
I have some cells which i gave a named range like R3_3
now i can query this named range in the selected Data
=QUERY({R3_3},"Select * ")
with these results (expected results)
-0.04
205.00
-0.09
-0.10
-0.11
Its only one column so i can filter it for example by values greater 100, it works fine with this statement
=QUERY({R3_3},"Select * where Col1 > 100 ")
with these results
205.00
How can i use a Named Range in the query statement itself, so i tell the query to regard the named range (array or single column) and filter it by some statement like if entries in the named range are greater than 100?
Like that:
=QUERY({R3_3},"Select * where "&R3_3 > 100 ")
-> It shows me "Formula Parse Error"