notageek,
You're treading on fairly dangerous ground, here. There is 'nothing' in Access which in any way guarantees that the next autonumber will have any certain value, that it will reflect the order in which the rows are added to the table, (or, for that matter, that it will be one greater than the last autonumber it issued). The only guarantee is that whatever autonumber is issued will be unique.
I think most people in the know would advise you not to use the value of an autonumber field as anything more than a (possibly random) unique number, fit to use as a random primary key, and not much else.
You can take this advice with a shaker of salt, but I would be cautious in my use of the values of autonumbers.
(Once bitten)
Tranman