Filter records

  • Thread starter Thread starter myxmaster
  • Start date Start date
M

myxmaster

Hi,
I have a form that lists transactions. I would like to limit the list
to show transactions from the previous 14 days.

TIA
 
Base the form on a query. Set the criteria for the date field to:
DateAdd("d",-14,Date())
See Help for more information about the DateAdd function.
 

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