I'm trying to select records that are >=
a calculated field. Here is the query:
=QUERY('Employer Form Responses'!A:Q,"select * where A >='"&B1&"' ",1)
Column A
in the data is a Date field (e.g. 9/14/2020 18:46:39) and field B1
contains
=TEXT(DATEVALUE(TODAY()-30),"YYYY-MM-DD")
The query gives me an empty result. How should I do this?