Autonumbers are not ideal for a field that has meaning to the user. By suggesting a specific starting value, this implies a meaning for this field. There are many situations where you can get gaps in the sequence of an autonumber, which may not be what you want. You can generate your own numbering sequence by using DMax() to find the largest existing number and incrementing that by one. This has been covered in these forums before, too.