May 21, 2009 #1 neoxaml Programmer Joined Apr 24, 2009 Messages 5 Location 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 Joined Nov 8, 2002 Messages 53,708 Location 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 Joined Apr 24, 2009 Messages 5 Location 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