Convert a Date to Character

J

Jasmine

How do I Convert a Date to Character in MsAccess ?

I'm an old Foxpro user and I know there was a command called - DTOC ( date
to character)

Could anyone tell me the equivalent in MsAccess?
 
J

John Nurick

I'd use the Format() function to ensure that the date comes out the
way I want, e.g.
Format(MyDate, "yyyy/mm/dd"
 
Top