Date Format

F

fredg

How can I display my date to be YYYY/MM/DD in tables?

In a table?
Why?
Tables should not be used for viewing, only for data storage.
Use a Form to view data. If you need to view the data as a table,
simply set the form default view to Datasheet.
That being said, set the format property of the field to:
yyyy/mm/dd
 
Top