You can use the DMax() function plus one to create your own auto incrementing number.
Something like;
Code:
If Me.YourCounter = 0 Or IsNull(Me.YourCounter) Then
Me.YourCounter = Nz(DMax("YourCounter", "YourTableName"), 999) + 1[COLOR="DarkGreen"] '999 represents the seed (first number) of your series[/COLOR]
End If
Additionally instead of storing a text field you could simply use a numeric field and then use the Field's Format property to add the text prefix, something like;