Sep 3, 2004 #1 wvmbark Technical User Feb 12, 2003 135 US What is the expression I'd use in an update query to convert a text field that contains "yyyymmdd" to a date/time data type?
What is the expression I'd use in an update query to convert a text field that contains "yyyymmdd" to a date/time data type?
Sep 3, 2004 1 #2 dhookom Programmer Jun 24, 2003 22,552 US Try: DateSerial(Left([TextField],4), Mid([TextField],5,2), Right([TextField],2)) Duane MS Access MVP Find out how to get great answers faq219-2884. Upvote 0 Downvote
Try: DateSerial(Left([TextField],4), Mid([TextField],5,2), Right([TextField],2)) Duane MS Access MVP Find out how to get great answers faq219-2884.
Sep 3, 2004 Thread starter #3 wvmbark Technical User Feb 12, 2003 135 US Works great. Thanks!! Upvote 0 Downvote