Actually, setting the Format property to "\10000" does not start the Autonumber field at 10000, it only makes it display that way. If you use the field as a foreign key in another table, you'll find that the real values are still 1, 2, etc. And if you go searching for job number 10123, you won't find it, because the real number is 123.
To really start at 10000, create a copy of the table (call it Copy B). In Copy B, change the Autonumber to a Number(Long Integer), and add a dummy record, giving the Number field a value of 9999. Next, create an Append query that appends the dummy row in Copy B to the original table. Now you can delete Copy B. (At this point, you need to compact the database if the original table has ever had a record number greater than 10000 in it, since the last time it was compacted.) Finally, delete the dummy row from the original table. Important: Don't compact the database again until after you've added at least one row. Rick Sprague