whats the best way to call a report from a command button?

  • Thread starter Thread starter Josh
  • Start date Start date
J

Josh

I have created a report and would like to view it whith a command button I
have on one of my forms. what is the best way to get this accomplished?
 
Use Click event of the command button to run code:
DoCmd.OpenReport "reportname", acViewPreview
 
Back
Top