Start at

  • Thread starter Thread starter rob p
  • Start date Start date
R

rob p

I have a table using auto number. Increment by 1 starting at 1. In my form
for that table, is there a way for it to display the highest number upon
open rather than the lowest (1)?
thanks.
 
I have a table using auto number. Increment by 1 starting at 1. In my form
for that table, is there a way for it to display the highest number upon
open rather than the lowest (1)?
thanks.

In the Form's Load event:
DoCmd.RunCommand acCmdRecordsGoToLast

Will go to the last record (which will be dependent upon your sort
order).
 

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

Back
Top