A findfirst procedure in the form would look like this
Code:
Dim rs as DAO.Recordset
Set rs = Me.recordsetClone
with rs
.findFirst "BirdName = """ & strBirdName & """"
if not .NoMatch then
Me.bookmark = .bookmark
else
'A messagebox if preferred
end if
end with
edit: If on another form or subform then you would set the the recordset = YourformReference.RecordsetClone and the bookmark as YourformReference.bookmark = .bookmark
If this helped, please click the star * at the bottom left and add to my reputation- Thanks