Adam, thanks for the suggestions.
Would I use your query statement in place of the row source code I have below?
I have in the unbound combobox (cboSelectException) row source the following:
All;"All Exception Reports";rptMissingEdObj;"Missing Educational Objectives";rptMissingLearnOut;"Missing Learning Outcomes";rptMissingLessonReferences;"Missing References";rptMissingSupport;"Missing Support Requirements"
All of the titles that begin with 'rpt' are the actual report names. The titles in "" are the names that are visible in the combobox. The first entry in Blue is the one that I am trying to figure out.
I know it is not correct but it is a place holder until I can figure out what should go there.
This is code that I currently have on the button. I have no idea what to put in to get all of the reports to print as well as individual reports to print.
' ************************************************** *************************
' When the user presses this button the selected Exception Report is printed.
' ************************************************** *************************
Private Sub btnPrintLC_Click()
On Error GoTo btnPrintLC_Click_Err
DoCmd.OpenReport Me.cboSelectException, acNormalbtnPrintLC_Click_Exit:
Exit SubbtnPrintLC_Click_Err:
MsgBox Err.DescriptionResume btnPrintLC_Click_Exit
End Sub
-----------------------------------------------------------------
Sean