Autonumber question

L

Lori

In Access 97, how can I set up a field using Autonumber to
start at a specific number and increment from there? For
example, in a new table, If I set up the Employee_ID field
as an Autonumber type and us Increment for New Values, how
can I have it start at say 1000, instead of 1?

Thanks!
 
L

Lynn Trapp

1. Run the following Query.

INSERT INTO YourTable (YourAutoNumberField)
VALUES (999);

2. Delete that record.

When you start creating records the first one you enter should have 1000 as
the ID number.
 

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