I apologise, my searching needs work. Here is a reply from Steve Schapel that
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=7640
answered my question:
Marko,
Open a blank query in design view, and enter 99999 in the Field row of
the first column of the query design grid. Make it an Append Query
(select Append from the Query menu), and nominate your table. In the
Append To row of the grid, enter the name of the Autonumber field. The
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=7640
SQL of the query will look something like this....
INSERT INTO [YourTable] ( YourAutoNumberField )
SELECT 99999 AS Expr1;
Run the query (click the toolbar button with the red [!] icon). Close
the query, open the table, and selete this record just added. After
that, the next record added will have 100000 in the autonumber field.
--
Steve Schapel, Microsoft Access MVP