That is more about format than storage. As example, you don't really want to
change the bits and bytes in the computer, right? Same for date. Let the
dates (and time) be stored the way Access 'likes' them, and if that does not
match your needs, you can FORMAT the presentation. As example, in the
Immediate Window (Ctrl_G, and you should see a small window there, with its
caption title "Immediate"), type:
? FORMAT( now, "yyyymmdd" ) [ enter ]
20091029
(result may vary, if you do it on another date, for sure
)
So, define you field as date time and know your data is then in US format by
default and use a FORMAT if you wish another representation. Note that the
result of a format is technically a STRING, not a date, so you can't make
computation (such as difference in day between two 'dates' ) on the
formatted representation, while you can on a default date_time type
Vanderghast, Access MVP