Or . .. If you are only wanting to preview one at a time you will need for
eg. to add an option frame to your form so that the user can chose which
report they want to view and then on the OnClick event of the command button
add the code
Select Case ReportType
Case 1
DoCmd.OpenReport "Report1", acViewPreview
Case 2
DoCmd.OpenReport "Report2", acViewPreview
Case 3
DoCmd.OpenReport "Report3", acViewPreview
End Select
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.