Right now when I run my query the default date reads: 20140519
I would like it to read: 05/19/2014
Is that possible? thanks,
I would like it to read: 05/19/2014
Is that possible? thanks,
CDate()
Format()
Format(CDate([YourDateString]),"mm/dd/yyyy")
Format(CDate(Left(CStr(20140519),4) & "-" & Mid(CStr(20140519),5,2) & "-" & Right(CStr(20140519),2)),"mm/dd/yyyy")
Comment