I feel really dumb now. I added that line, ran the form (clicked the button after entering some data), but it won't produce anything.
I think all this is really accomplishing is getting me frustrated beyond belief...
Code:
...
If (PI_Number & vbNullString) = vbNullString Then Exit Sub
Dim rs1 As DAO.Recordset
Set rs1 = Me.RecordsetClone
Debug.Print "[ReportType]= '" & Report_Type & "' AND [PI] = '" & PI_Number & "'"
rs1.FindFirst ("[ReportType]= '" & Report_Type & "' AND [PI] = '" & PI_Number & "'")
...
Comment