Private sub button1_Click()
DoCmd.FindRecord Me.fieldname.Value, acStart, , acSearchAll, , , False
end sub
but the problem is that the command stops searching at the last record. so the records before the current record are not searched. I thought with acSearchAll it should search the entire record list.