Last record first

A

Alex

Can anyone tell me how to program a form so that it opens
the last record (blank record) first, then back in order
of entry.

e.g.

First record opened in form: blank
Second record opened in form: Record #2
Third record opened in form: Record #3.

Thanks,
Alex.
 
F

fredg

Can anyone tell me how to program a form so that it opens
the last record (blank record) first, then back in order
of entry.

e.g.

First record opened in form: blank
Second record opened in form: Record #2
Third record opened in form: Record #3.

Thanks,
Alex.

To always open the form to a New record, code the form's Load event:
DoCmd.RunCommand acCmdRecordsGoToNew
 
A

Alex

-----Original Message-----


To always open the form to a New record, code the form's Load event:
DoCmd.RunCommand acCmdRecordsGoToNew


--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
Thanks very much
 
B

Bob

If you want the newest record to appear first, sort by
your autonumber field in descending order such as:

Order By MyAutoNumberField DESC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top