Or, if you didn't delete ALL of the records and need to re-number, you
can change the existing autonumber field to number, create another
autonumber field, run an update query to update values in
corresponding tables, then delete the original field.
It shouldn't matter. Autonumbers have one purpose, and one purpose ONLY: to
provide a meaningless unique key. If you're trying to use them as a record
count, or assuming that they will be reliably sequential, you'll be
disappointed; even starting a new record and pressing <Esc> to cancel it will
"use up" an autonumber. They're simply not designed for display, and should
best be kept "under the hood" and not exposed to user view. A primary key
value of 33129 is just as useful as 1 for its intended purpose.
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.