Number Increments

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

How can I add a field that increments to an existing table. I know I can
use the auto num but that starts at the number 1 and I want to start my
numbers at 100, 101, 102, and so on. Any suggestions?



Thanks,

Chris
 
There a couple of things you can do and it depends on what you are going to
use the nubers for as to the best approach.

You could use an autonumber that starts at 1 and add 100 to it in your query
to give you the numbers you said you wanted.

You could add a number field to your existing table and insert the desired
numbers. Create a copy of the table structure with an autonumber field and
append the existing table. The autonumber field will accepts the number and
continue from the last number as records are appended.
 

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

Similar Threads


Back
Top