How to use the "GoToRecord" command to get the record by the first key?
I suspect you want to go to the primary key entry.
MyKey = 3 With Me.Recordset .FindFirst "ID=" & MyKey If .NoMatch Then MsgBox "Not found" End If End With