Hi, I am not sure where I went wrong here, but I keep getting NoMatch when there is a match. The record source for this form is a query. Thank you for any help!
Code:
Private Sub txtFind_AfterUpdate()
Dim rs As Recordset
Set rs = Me.RecordsetClone
rs.FindFirst "[Number]=" & "' & Me.txtFind & '"
If rs.NoMatch Then
MsgBox "Client Not Found"
Else
Me.Bookmark = rs.Bookmark
End If
End Sub