No, the autonumber won't store letters in its field. Add another field to
your table that will hold the user's initials, and then write those initials
into the record when you create the record.
If you want to display the combination of the autonumber value (hint:
autonumber values are best used "in secret" and not shown to users) and the
user's intials, you can always concatenate the two values into a single
string value:
[autonumberfield] & [userinitials]

Signature
Ken Snell
<MS ACCESS MVP>
> I would like to know if it is possible to have a
> autonumber field work to produce the following. I would
[quoted text clipped - 3 lines]
>
> Thanks