No. That may be why they called it an auto number field.
When designing a database just about every table will have a primary key column which uniquely identifies each row in the table. This value has no other purpose than to point to a particular row in the table. Not even the sequence is significant, other than this is an efficient way to create them. The primary key will not be seen by the human eye. As we know, computers are very comfortable with numbers like 11002; conversely they get a little bit nervous with strings like PJ11002. This is what an Autonumber column is used for.
People on the other hand like to see identifiers full of extra information. They will look at PJ11002 and interpret that as a reference to the pajamas Bob wore on October 1, 2002, if you see what I mean.
If you have a PJ11002, then my guess is you plan to have an MC11002 somewhere that identifies an MC instead of a PJ. Instead of building that information into the primary key you should add a column to your table just for that property . It will have values {PJ, MC, WM, etc}. The primary key column can then be an Autonumber column with values like 1,2,3, 11002, 22001, 33012, etc.
When there is a need to display a meaningful identifier for human consumption, concatenate the letters with the number.
SELECT CStr(pk_id) & type_code
FROM MyTable