> No. It then would not be a unique number within the database.
>
[quoted text clipped - 5 lines]
> > Or
> > can I format to only 3 places.
If you just want to export a three-digit number, why not use a calculated
field in a query that takes just the last three numbers from the autonumber
field's value:
My3DigitNumber: Right([AutonumberFieldName], 3)
What you seek to do, as I said before, is not possible with an autonumber
field.

Signature
Ken Snell
<MS ACCESS MVP>
> Is there a way to program and autoumber field? I am thinking in the
> default
[quoted text clipped - 11 lines]
>> > Or
>> > can I format to only 3 places.
nathan a - 26 May 2005 19:42 GMT
Thanks for your help. I also came to this solution.
> If you just want to export a three-digit number, why not use a calculated
> field in a query that takes just the last three numbers from the autonumber
[quoted text clipped - 19 lines]
> >> > Or
> >> > can I format to only 3 places.