How can I set up Access to open a form to the last record?

S

Sooza2001

I am designing a database form. When the user selects the form, I want it to
automatically go to the last entry in the database, instead of the default
(which brings the user to the first entry in the database).
 
M

Mike Labosh

I am designing a database form. When the user selects the form, I want it
to
automatically go to the last entry in the database, instead of the default
(which brings the user to the first entry in the database).

Private Sub Form_Load()
Me.Recordset.Movelast
End Sub
 
Top