Try this in your command button on click event using your report name and your id fields.
Dim stDocName As String
Dim strCriteria As String
stDocName = "myreport"
strCriteria = "myid = " & [myID]
DoCmd.OpenReport stDocName, acPreview, , strCriteria
Mike