Well...
The number is supposed to be a unique identifier for that record. The column is called "Trouble Ticket Number" and they never change. Trouble Ticket #414 (the autonumbered field) will always be the same record, right? I don't want subsequent numbers to change if a record is deleted, because people refer to the Tickets by their numbers. Autonumbering seemed ideal because it wasn't changeable, even when records were deleted.
There is a form for inputting new Trouble Tickets, and that form also allows you to "attach" a file. The file is written to a special network location, but appended to the front of its name is "TT_xxxx_", where "xxxx" is the value of the new Trouble Ticket Number. That way, once I know the Trouble Ticket Number, I can easily search for all files associated with it (tt_<number>_*.*, etc.). To build the new file name, of course, I need the value of the new field.
After reading what you wrote, it totally makes sense to not just grab the last one and add 1 to it. That didn't take much convincing! But if I can grab the "current" one, I'm still a happy fella.
This was only the second database I've ever built, so forgive me if I've done something really heinous. I suppose I could add a new field, but I would tell it to adopt whatever the value of the AutoNumber field was, because that's the behavior I want in that field.
Am I way off-base on this?
Cheers,
Edward "Do not read this sentence."