May 21, 2009 #1 neoxaml Programmer Apr 24, 2009 5 US Is there a sql way to convert data "01/04/2008 1430" to appear as 2008/04/01?
May 21, 2009 #2 PHV MIS Nov 8, 2002 53,708 FR In msacces you may use something like this: SELECT Mid(yourTextField,7,4) & Mid(yourTextField,3,4) & Left(yourTextField,2) FROM yourTable Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
In msacces you may use something like this: SELECT Mid(yourTextField,7,4) & Mid(yourTextField,3,4) & Left(yourTextField,2) FROM yourTable Hope This Helps, PH. FAQ219-2884 FAQ181-2886
May 21, 2009 Thread starter #3 neoxaml Programmer Apr 24, 2009 5 US txs, ended up doing the following: Mid(left(Job.LastModified, 10), 5, 8) & '/' & Mid(left(Job.LastModified, 10), 3, 2) & '/' & Mid(left(Job.LastModified, 10), 1, 2) AS Dates Upvote 0 Downvote
txs, ended up doing the following: Mid(left(Job.LastModified, 10), 5, 8) & '/' & Mid(left(Job.LastModified, 10), 3, 2) & '/' & Mid(left(Job.LastModified, 10), 1, 2) AS Dates