Increment AutoID staring with a number other then 1

  • Thread starter Sharon123 via AccessMonster.com
  • Start date
S

Sharon123 via AccessMonster.com

Hi,
Does anyone know how I can add an auto number to my existing table that would
start with a number of then 1. For example 50, 51, 52 etc..
Thanks in advance for your help
 
G

Golfinray

Try this. Start a new query in design view. Make it a make-table query. Go to
sql view and type:
alter table tablename
add column id counter (1001,50)
or wherever you want to start. Run the query. It should add that column to
your table.
 
J

Jeff Boyce

Why? If you are using an Access "Autonumber" field, they are designed to
provide a unique row identifier. That's it. They really aren't fit for
human consumption, so it probably doesn't matter what number they have.

Why does it matter to you?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 

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