Microsoft Access provides two field properties that produce similar results: the Format property and the InputMask property.
Use the Format property to display data in a consistent format. For example, if you set the Format property for a Date/Time field to Medium Date format, all dates entered will display in this form: 12-Jan-1999. If a user of your database enters a date as 01/12/99 (or any other valid date format), Microsoft Access will convert the display to the Medium Date format when the record is saved.
The Format property affects only how a value is displayed, not how it is stored in the table. Also, a display format isn't applied until the data entered is saved
If you define both a display format and an input mask for a field, Microsoft Access uses the input mask when you are adding or editing data, and the Format setting determines how the data is displayed when the record is saved. When using both Format and InputMask properties, be careful that their results don't conflict.