Reports Question

N

netadmin

I have a report that pulls information from a form, what
I need to know is their a way to print a report from a
command button instead of using the print option in
access menu to select which page. I would like to only
print a selected report not all of them.

Any help would be appreciated
 
K

Ken Snell

DoCmd.OpenReport "ReportName"

Above will print, not preview, the ReportName report.

Use the click event of the command button to run the code step.
 
Top