How to use 'GoToRecord' Command to get a record by Primary Key?
I suspect you wish to move to a record given the primary key.
MyKey = 3
With Me.Recordset
.FindFirst "ID=" & MyKey
If .NoMatch Then
MsgBox "Not found"
End If
End With
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With