I am trying to write a query where I only want to pick records prior to the current date (now()). If I do the query criteria as follows:
<#1/25/01#
then I am getting records with dates from early january in 2001, 2000, and 1999, but I am not getting records from feb to dec of 1999 or 2000. Why does the formula not acknowledge the year in my statement?
Also, if I want to get records from no longer than two years ago, can I just subtract out the days, as follows?
>now()-(2*365)
This second statement also would require me getting the year acknowledged.
<#1/25/01#
then I am getting records with dates from early january in 2001, 2000, and 1999, but I am not getting records from feb to dec of 1999 or 2000. Why does the formula not acknowledge the year in my statement?
Also, if I want to get records from no longer than two years ago, can I just subtract out the days, as follows?
>now()-(2*365)
This second statement also would require me getting the year acknowledged.