Both John and John have given good advise.
If what you actually need is a sequential numbering system for your data,
there are better ways to do it.
Autonumbers really should never even be exposed to users.
Record numbers are meaningless in Access and most other relational
databases. Even the number you see in the navigation buttons on a form are
not consistent with a specific record. It only shows the relative postion of
the record in the current recordset.
As to sequential numbering, you can use a long integer field and each time
you add a record, use the DMax function to find the current highest number
and add 1 to it; however, even this is not perfect. If user 1 starts a new
record and user 2 starts a new record before user 1 saves the record, you
will have duplicate numbers. Any time a record is deleted, you will have a
gap unless you have a routine that spins through the entire table updating
the field, but then in a live environment if you have one user deleting a
record and another adding a record, it wll go completely crazy. Which brings
to mind what the boss wants
If you can describe what it is you want to do, perhaps we can help with a
way to do it.