I'm getting a 'Run-time 13' Type mismatch message
What's really aggravating is that I know I've done this in the distant past, but I can't even find it in the Forum. I believe that the problem is that the original code was for a numeric search, while in this case it needs to be for a non-numeric search.
Private Sub fndClassNoForReport_Click()
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[FNClass_ProgNo] = " & Str(Nz(Me![fndClassNoForReport], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Thanks in advance for any help with this



