That answer is a little above my head, so let me try and clarify what you said. In my reports form I should go ahead and create a combo box using the truckno as my field. Then under my existing report buttons insert a docmd for each report and it will reflect the truckno I have selected in my combo box even though my reports are run off of prompted queries?
Main Topics
Browse All Topics





by: eghtebasPosted on 2003-06-12 at 05:51:43ID: 8708198
Create a combo box (cboTruckNo) and refer to it by:
Forms!MyForm!cboTruckNo by replacing exiting criteria in your queries under field TruckNo.
Under button to print your the reports have
DoCmd.Print "Report1"
DoCmd.Print "Report2"
DoCmd.Print "Report3"
.
.
DoCmd.Print "Report20"