| |
Scotty Mo
Posts: 8
Score: 0
Joined: 10/16/2004
From:
Status: offline
|
In Access, as in all of the Microsoft Office suite, dates are stored in the same way. While they can be represented in the way of mm/dd/yyyy or dd/mm/yyyy, it's stored as an 8-byte floating-point number. The number before the decimal point stores the date, the number after the decimal point stores the time. If you convert the number 2 into a date, it will give you 01/01/1900 at 12:00:00AM. The number 3 will give you 01/02/1900 and so on. What you want to do is set the format on your date fields to "dd/mm/yyyy" in the design view of your table. This will cause your data to show in this way. If you've already made forms or reports with these fields, you may need to manually update their formats as well. Good luck Scotty Mo
|
|