Opening form to last record input

  • Thread starter Thread starter Guest
  • Start date Start date
How do you tell the form to open to the last record Input?????

Thanks,
Barb

To go to the last record in the form recordset (according to whatever
sort order is used), code the Open event of the form:

DoCmd.RunCommand acCmdRecordsGoToLast

Or..

DoCmd.GoToRecord , , acLast
 
Back
Top