A family of Microsoft relational database management systems designed for ease of use.
Is this a Number (Double or Decimal) or a text string? You can use either but the syntax is a bit different. If it's Number try
DateSerial([numdate] \ 10000, [numdate] \ 100 MOD 100, [numdate] MOD 100) + TimeSerial(100 * ([numdate]-fix([numdate]) MOD 100, 10000 * ([numdate]-fix([numdate]) MOD 100)
For text, try
cdate(Left([textdate], 4) & "-" & Mid([textdate],5,2) & "-" & Mid([textdate],7,2) & " " & Mid([textdate],10,2) & ":" & Right([textdate], 2))
There are dozens of ways to do this using the CDate, DateSerial, TimeSerial and substringing functions, but I did test these and they both work.
John W. Vinson/MVP