The Code in which I often use (& works) to have a Form open up to a New Record is:
Private Sub Form_Load()
DoCmd.GoToRecord , , acNewRec
End Sub
However, in one of my Forms I wish to have it open up to the Last Record, so in my above code I thought to replace 'New' with 'Last' but it's not working.
Private Sub Form_Load()
DoCmd.GoToRecord , , acLastRec
End Sub