Jack,
There are a couple of ways to do this.
1. Set the recordsource in the Report_Open event of the
report:
Private Sub Report_Open(Cancel As Integer)
Me.RecordSource = "<recordsource>"
End Sub
2. Use a base query in the report and specify a filter
and/or sort. The following code opens the report with the
same same filter and sort as a subform.
DoCmd.OpenReport "rptJobList", acViewPreview, , _
Nz(Me.JobListSubform.Form.Filter), , _
Nz(Me.JobListSubform.Form.OrderBy)
Hope this helps!
Tim