How to Create a Report That Prints My Filtered

b77ar

New member
Local time
Today, 08:30
Joined
Jul 10, 2005
Messages
4
I have a form that has a filter that I designed using a checkboxes. When I try and get a report to print the filtered information that is displayed currently on the screen, it will not do it. The report will still print the checked and notcheked but for all recoreds not printing it. How do I do this?
Thanks
 

Attachments

b77ar said:
I have a form that has a filter that I designed using a checkboxes. When I try and get a report to print the filtered information that is displayed currently on the screen, it will not do it. The report will still print the checked and notcheked but for all recoreds not printing it. How do I do this?
Thanks

Try changing the code in the event that produces the report from;

DoCmd.OpenReport stDocName, acPreview

to

DoCmd.OpenReport stDocName, acPreview, , Me.Filter
 
Thanks for your reply,
it works wel after changing the code in the event
that produces the report and Case_query also.
Thanks Peter again.
 

Attachments

Users who are viewing this thread

Back
Top Bottom