Seeing as how format is appearance I assume you want the date to be text.
Format([YourDateField],"yyyy") & "/" & Format([YourDateField],"mm") & "/" &
Format([YourDateField],"dd")
And I am also assuming you meant "yyyy" instead of "yyy". If you realy ment
"yyy" then it would be like ---
Right(Format([YourDateField],"yyyy"),3) & "/" & Format([YourDateField],"mm")
& "/" & Format([YourDateField],"dd")
"RheaS" wrote:
> I need to change the actual format of a date in Access 2003 from mm/dd/yy to
> yyy/mm/dd, not just the appearance of the date.
>
> Got any suggetsions?
|