Must be something different, because I am getting a data type mismatch error on my findfirst.
Oddly, it works with the MemberID (the primary key) but not MemberNr.
Thanks. Sean.
Code:
With Me.RecordsetClone
.FindFirst "[MemberNr] = " & Str(Nz(Me![txtMemberNr_Search], 0))
If Not .NoMatch Then Me.Bookmark = .Bookmark
End With
Oddly, it works with the MemberID (the primary key) but not MemberNr.
Thanks. Sean.