> I need my Date field to possess the following format: Jan-05-1999
>
[quoted text clipped - 3 lines]
>
> John
With the understanding that dates are always stored in the tables exactly
the same regardless of format or input mask...
Use a format property of "mmm-dd-yyyy"

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Chuck - 31 Jan 2007 15:52 GMT
>> I need my Date field to possess the following format: Jan-05-1999
>>
[quoted text clipped - 8 lines]
>
>Use a format property of "mmm-dd-yyyy"
jmarr02s
The input mask is fine for the person entering the data.
How the data is actually stored in the table is really unimportant.
However, when you pull dates out of the table then format the display:
Format({date field},"Mmm-dd-yyyy")
Chuck