LD said:
I am working in a 9000 record Access database and adding records. Somehow
the auto number is way off. The autonumber should be a four digit number
but is now an 8 digit number. How do I correct this to get the
autonumbering to get back in order?
Thanks
LD
I am not sure what you mean by "The autonumber should be a four digit
number." The standard filed type for autonumber is long integer and you are
no where close to running out of space there and it is far larger than four
digits.
In any case, it would appear that your autonumber is on track. It
appears to be doing exactly what it is designed to do -- Assign a unique
number for each record. -- That is all it is designed to do. It is not
designed to provide sequential numbers.
I suggest you may not want to use Autonumber for that use. Autonumbers
are designed to provide unique numbers. It in not designed to provide
numbers in order and for a number of reasons may not do so. As a result
using them in any application where the user sees the numbers is likely to
end up with confusion.
There are other ways of providing the numbers you want depending on the
particual application.