G
Guest
Is there a way to have a autonumber key start at say 1004 instead of 1?
Thanks,
Thanks,
Maurice said:Ted,
Usually I do that as follows:
1. Create a table with one field datatype integer
2. Insert 1004 as a number in the table
3. Create a query with the newly created table as the source
4. Make the query an appendquery
5. Append the numberfield to the autonumber field of the table which you
want to start at 1004
6. Run the query
7. Delete the query and the newly created table
8. Now if you insert a record in the table which contains the autonumber it
should start at 1004
hth