I have the following WHERE clause, to retrieve data between AND INCLUDING 2 dates:
WHERE (((Calls.Date_Time)>=#1/1/2003# And (Calls.Date_Time)<=#3/3/2003#));
Data is pulled from 1/1/03 to 2/3/03, but not from the 2nd date specified.
Any suggestions as to why the <= operator does not work?
(It also does not work without the BETWEEN statement)
Im sure its very simple, I just cant spot it!!
Thanks
WHERE (((Calls.Date_Time)>=#1/1/2003# And (Calls.Date_Time)<=#3/3/2003#));
Data is pulled from 1/1/03 to 2/3/03, but not from the 2nd date specified.
Any suggestions as to why the <= operator does not work?
(It also does not work without the BETWEEN statement)
Im sure its very simple, I just cant spot it!!
Thanks