Context
I am trying to filter data by date range using Query. I want data from 31/12/2019 onwards. This is the formula I used:
=Query(Query(ImportRange("ID", "RotorkPrice"),"offset 2",1),"select * where Col1 >= '2019-12-31'")
This only returns the top row (though I did ask Query to remove the first 2 rows). The data looks like so:
I took examples from here and here, and have been following this guide.
Problem
Is there a way to only draw data from this date onwards using Query?
The spreadsheet is here.