PHV is correct.
Autonumber should only be used to indentify the record, and is not refelctive of the number of records.
Try this...
Start entering a new record. Your autnumber appears - take note of the number. Now hit the ESC escape key twice. The the data entered along with the autnumber disappears. Now enter another new record. The autnumber will be generated again, but will be different than the autnumber entered the first time.
You database is on a network, try this...
Start entering a record on one computer. Leave the record incomplete. Then enter another new record on another computer. Notice anything funny with the autnumbers generated on each computer?
Autonumbers are fine -- it is a very useful way in generating a unique primary key.
Wants some fun? (Once done, you can not change this so do this on a test or a copy of your table) Open your table in design and select the primary autonumber key. In the Field Properties" section, you will be able to change the "New value" from "Increment" to "Random". For small shared databases, I always use random.
Want even more fun? Instead of using the Longer interger, you can specify "Replication ID" -- this is a huge "number". The chances of generating a duplicate, random ReplicationID are very, very small.
Richard
Richard