This will get you going I think.
Dim stDocName As String
Dim strFilter As String
strFilter = "[KeyID]=" & Me.KeyID
stDocName = "Report1"
DoCmd.OpenReport stDocName, acPreview, , strFilter
Replace the KeyID part of this example with your linking field.
By using the acPreview you can view the results.
Let us know if this works!
John [sig]<p>John A. Gilman<br><a href=mailto:gms@uslink.net>gms@uslink.net</a><br>[/sig]