Opening form to last record input

F

fredg

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
 
Top