Printing selected records in a report

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?
 
D

Douglas J. Steele

Create a query that returns only those records of interest, and base the
report on that query.
 
Top