I need to take a date that is formatted like this yyyymmddhhmmss and turn it into mm/dd/yyyy. I have an aspx page that uses substring to accomplish this and I figured I could do the same in access but noooo here is the code I have
When I try it I get Undefined function Substring.
Code:
substring(shipdate,5,2) + '/' + substring(shipdate,7,2) + '/' + substring(shipdate,0,5) as shipdate2
When I try it I get Undefined function Substring.