Date Formula

D

Douglas J. Steele

What's the value stored in: a number, or a string?

For a string, try DateSerial(Left$(DateField, 4), Mid$(DateField, 5, 2),
Right$(DateField, 2))

For a number, try CDate(Format(DateField, "0000\-00\-00"))
 
Top