I tried setting the Order By on the form to descending on the create date (entered automatically) and the auto-numbered ID, and another date field. None worked. So I went to another database I created where it does go to the last record of over a thousand records.
Code:
Private Sub Form_Load()
DoCmd.GoToRecord , , acLast
End Sub
That didn't work until I deleted the Order By line in this database, and voila, opens to last record. The Order By line was obviously conflicting with the "go to last code" I stated in the first post.
I appreciate your responses. Don't know why the Order By doesn't work, but am happy with the solution. The first solution offered did go to the last record, but filtered by the Where clause. I need to be able to page back a few previous records to record certain information.
Thanks for your time and generosity.