Gary said:
This is probably easy - I have an auto number key field that i would
like to reset to zero and then re-number the existing records, and
then restart incrementing new records from there. Is this possible?
If so, how? Any help is appreciated. Thanks -- Gary
You should not need to reset an autonumber field.
Autonumber fields are not designed to be seen by the user. They are
designed to be used to provide a unique number for each record. Not a
consecutive number, just a unique number. This it does well.
Trying to make it keep numbers in order or consecutive, will drive you
crazy.
If you want numbers in order it is far better to use a integer filed and
make up your own method of incrementing the numbers based on your needs.
Trust me on this. Many many people have this problem and almost all end
up doing as suggested.
Used as intended and used for linking tables, autonumber is the better
tool, but you don't want users to see those numbers because they are going
to be bothered by the odd missing number.