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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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).
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top