Convert a Date to Character

  • Thread starter Thread starter Jasmine
  • Start date Start date
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?
 
I'd use the Format() function to ensure that the date comes out the
way I want, e.g.
Format(MyDate, "yyyy/mm/dd"
 
Back
Top