Well, you are going to have to write code somewhere, unless you use the button wizard and tell it to link the report to the combo box.
Remember the maxim: "I write code so you don't have to." (See
www.thinkgeek.com for other fun coding t-shirts)
The way you would do this with the button is:
'===============================
Dim sLink As String
Dim dtStart As Date
Dim sDoc As String
sDoc = "rptMyReport"
If IsNull(Me.StartDate) Or Me.StartDate = 0 Then
MsgBox "Please select a start date.", vbInformation
Exit Sub
Else
dtStart = Me.StartDate
End If
sLink = "[Date] = #" & dtStart & "#"
DoCmd.OpenReport sDoc, , , sLink
'===============================
So you see... either this code, or add code to the report.
Don't forget to code the On No Data event on the reports.
mmcdonal
Look it up at:
http://wrox.books24x7.com