I have a basic table with simple data. I need to filter data by date, for example, I want to see only items with dates between 03/03/2016
and 03/04/2016
.
This query looks like this:
select A, B WHERE A >= 42432 AND A <= 42463
If I change date in cells B1
and C1
, numbers (42432
and 42463
) are changing as well. But items are not being filtered.
So what should I do?