Dates Older Than

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

I have a Query that I want to run. I want it to show Dates older than
20 Days from Today. The field that has the dates in it is SalesDate.

I tried putting this is the criretia section of the Query but this did
not work.

Now()>20

Any Suggestions?
Thanks
DS
 
DS said:
I have a Query that I want to run. I want it to show Dates older than
20 Days from Today. The field that has the dates in it is SalesDate.

I tried putting this is the criretia section of the Query but this did
not work.

Now()>20

< Now() - 20

Actually, it would be better to use...

<Date()-20

....unless you really want to factor the time of day into it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top