the following query does not filter my dates from field "dated". There are no other criteria set.
My query:
I expect the query to return only those dates greater than 12/31/2010. It returns all dates, including those less than 12/31/2010.
Any idea what is wrong? I am running Access 2010 with SP1
Hefly
My query:
Code:
SELECT [tbl_2010 Transaction Details].Dated
FROM [tbl_2010 Transaction Details]
WHERE ((([tbl_2010 Transaction Details].Dated)>"#12/31/2010#"));
I expect the query to return only those dates greater than 12/31/2010. It returns all dates, including those less than 12/31/2010.
Any idea what is wrong? I am running Access 2010 with SP1
Hefly