>I am priming up an auto number field in a table with a particular number and
>then want the next records to be appended with the next numbers in the
[quoted text clipped - 6 lines]
>maybe I could remove the field and then reinstate it but how do I do this
>using code?
You are using autonumber inappropriately. An AutoNumber
field is only useful as a surrogate primary key where it's
only requirement is that it be unique. As a surrogate pk,
the number has no meaning to anyone and therefore should not
be displayed where users can see it (because human nature
tries to make up a meaning such as this one comes after that
one or why is that number missing).
If you really need to have consequitively numbered records
(fairly unusual), then you will have to write code behind a
form to create them according to whatever rules you want to
follow.

Signature
Marsh
MVP [MS Access]