Converting a date to a string

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a date e.g. 01.10.2007 (Norwegian date format) (1st October 2007)
which I would like to convert to a string with 6 characters: 011007. Which
functions should I use to create this string?
 
I have a date e.g. 01.10.2007 (Norwegian date format) (1st October 2007)
which I would like to convert to a string with 6 characters: 011007. Which
functions should I use to create this string?

Format([datefield], "ddmmyy")

John W. Vinson [MVP]
 
Back
Top