Printing selected records in a report

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I have been entering records into a database table by use
of a form and now want to print just selected records as
per each month only. I have fields such as "Date
Recieved", "Date Paid", "From", "Re:", "Report Month"...
The data is all on one table including report month data
of April, May etc.

How can I print a report for just one month without
printing every record that has been inputed?
 
Create a query that returns only those records of interest, and base the
report on that query.
 
Back
Top