Date Field

  • Thread starter Thread starter C
  • Start date Start date
C

C

How do I retrieve certain elements from a date field?
E.g. I need 091703 from a date field input of 9/17/2003.
 
If the value's been stored in a Date field, use the Format function to
reformat it:

Format$(MyDate, "mmddyy")
 
Back
Top