Multiple reports from one query

  • Thread starter Thread starter Pjdelchi
  • Start date Start date
P

Pjdelchi

I have several reports that run from one query. Each report has one field
whose criteria is different and permanent. Instead of having to change the
query criteria every day for each report, can I filter through a report so
that I can just open the report and it filter for each report individually?
 
Yes.
Take all filtering out of your query.
Use your form to allow the user to make filtering options.
Use the Where Argument of the OpenReport method to to the filtering. The
Where argument is just like a Jet SQL WHERE Clause without the word where.
 
Back
Top