Go to last record

  • Thread starter Thread starter Kevin
  • Start date Start date
K

Kevin

I have a subform (datasheet view) that requires entry by
users. It requires them to scroll down to get to the "new
record". Is there a way to automatically go to the last
record of the subform upon opening the main form?
Thank you!
 
On the properties of the subform add the following to the
ON CURRENT event.

DoCmd.GoToRecord , , acNewRec


hth

Lee T.
 
Back
Top