How do I Increment an auto numbered field with value > 1

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a field in a table that will auto number while skipping
every 4th number. Like 1,5,9,13
 
You can't change the behaviour of the Autonumber field in Access: it's
either sequential (increasing by 1), or random. No other choices.

To get what you want, you'll have to write your own code to keep track of
the value and increment it as desired.

However, why do you need this? What purpose does it serve to have the field
skip values?
 
Back
Top