You can't change an autonumber type.
To do what you're trying to do, create a second table that's identical to
your existing table except that it just has a Long Integer field rather than
the Autonumber field. Populate that second table, putting in the desired
numbers in the Long Integer field. Create an Append query (INSERT INTO...)
that takes the values from the second table and puts them into the original
table.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Hi,
> I have a table with the autonumber field. I need to override the
[quoted text clipped - 3 lines]
> switch off records autonumbering for some values, then restore the record
> autonumbering after these values are written. Thanks
Joe M - 11 Apr 2005 01:53 GMT
Thanks Douglas, can you please give me the coding examples of APPEND/INSERT
records from the second table to the original tables. Thanks.
> You can't change an autonumber type.
>
[quoted text clipped - 12 lines]
>> temporarily switch off records autonumbering for some values, then
>> restore the record autonumbering after these values are written. Thanks
John Vinson - 11 Apr 2005 02:25 GMT
>Thanks Douglas, can you please give me the coding examples of APPEND/INSERT
>records from the second table to the original tables. Thanks.
No "coding" involved. Simply create a query based on the second table;
use the Query menu option to change it to an Append query. Name the
first table when asked what you want to append to.
John W. Vinson[MVP]