Autonumbers exist for one purpose only: to provide a (practically
guaranteed) unique value that can be used as a primary key. No meaning
should ever be assigned to the value of the autonumber. In fact, usually the
user isn't even aware of what value has been assigned.
Now, you appear to have what's often referred to as an "intelligent key",
which isn't a compliment. It would appear that you're trying to store more
than one piece of information in the same field, which is actually a
violation of database normalization rules.
Having said all that, yes it is possible to do what you want. Insert a row
with a record that has a value of 270000, and the next row to be inserted
will get an autonumber value of 270001. Once that's occurred, you can delete
the bogus 270000 record you inserted. Hopefully, though, you'll rethink what
you're doing and not take that route.
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"Gretchen" <(E-Mail Removed)> wrote in message
news:8CFC6AFE-7117-461C-99B5-(E-Mail Removed)...
> Is there a way to reset an auto number in access tables with out changing
the
> number for existing records? I have an auto number starting at 260001; as
of
> January 1, 2007 I want the numbering sequence to start at 270001 however I
> don't want the numbers for previous records to be modified. Is this
possible
> using the field format of auto number?