I am facing an issue with google Sheets (advanced search, search rows (advanced)) and query().
I have the following query. When testing it on google sheets, it works like a charm.
SELECT A WHERE A >= date '"&TEXT((TODAY()+7),"YYYY-MM-DD")&"' AND A < date '"&TEXT((TODAY()+14),"YYYY-MM-DD")&"' AND C = '' LIMIT 5
When executing on make, i get the following error:
RuntimeError
Invalid query: Invalid date literal [“&TEXT((TODAY()+7),“YYYY-MM-DD”)&”]. Date literals should be of form yyyy-MM-dd.
Of course I tried to just use yyyy-MM-dd , but same result.
I search for 30 minutes now but can’t find a working solution.
What am I doing wrong? Thanks