Go to last record

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!
 
L

Lee T.

On the properties of the subform add the following to the
ON CURRENT event.

DoCmd.GoToRecord , , acNewRec


hth

Lee T.
 
Top