Date limited report

  • Thread starter Thread starter ifoundgoldbug
  • Start date Start date
I

ifoundgoldbug

Greeting
I am trying to make a report that will only grab records that fit
pmdate <date()+7 AND pmdate >date()-1. basically I just want to make a
report of items for the upcoming week. Is this possible???

Thank you for your time

Gold Bug
 
Greeting
I am trying to make a report that will only grab records that fit
pmdate <date()+7 AND pmdate >date()-1. basically I just want to make a
report of items for the upcoming week. Is this possible???

Thank you for your time

Gold Bug

Sure. Base the Report on a Query with a criterion
= DateAdd("d", -1, Date()) AND < DateAdd("d", 7, Date())

on pmdate.

John W. Vinson[MVP]
 

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

Similar Threads

tricky sql statment 1
comparing withing a recordset 1
lotus Notes coding help 2
Summing Groups in Reports 2
value on a specific date 3
monthly/weekly reports 1
Query/Reports Dates 3
Extracting by Date 10

Back
Top