I have the following code:
' Find the record that matches the control.
Dim rs As DAO.Recordset
Set rs = Me.Recordset.Clone
rs.FindFirst "[LastFour] = '" & Me![Combo54] & "'"
Me.Bookmark = rs.Bookmark
MsgBox "Record not found"
End If
rs.Close
half the time it works and half the time I an error message: Unknow function error 3072. Cand some one please tell me what is going on here?
Thanks,
Margamo
' Find the record that matches the control.
Dim rs As DAO.Recordset
Set rs = Me.Recordset.Clone
rs.FindFirst "[LastFour] = '" & Me![Combo54] & "'"
Me.Bookmark = rs.Bookmark
MsgBox "Record not found"
End If
rs.Close
half the time it works and half the time I an error message: Unknow function error 3072. Cand some one please tell me what is going on here?
Thanks,
Margamo