Jan 9, 2006 #1 2Plan MIS Joined Mar 29, 2005 Messages 55 Location US I would like to run a query that changes the value "00:02" to "24:02" and "01:04" to "25:04" These values have a text data type. "00:02" represents 12:02AM "01:04" represents 1:04AM Thanks, for any assistance.
I would like to run a query that changes the value "00:02" to "24:02" and "01:04" to "25:04" These values have a text data type. "00:02" represents 12:02AM "01:04" represents 1:04AM Thanks, for any assistance.
Jan 9, 2006 #2 snyperx3 Programmer Joined May 31, 2005 Messages 467 Location US Hows this work? Time: Cstr(Cint(Left([YourFieldName],2)) + 12) & Right([YourFieldName],3) -Pete Upvote 0 Downvote
Jan 9, 2006 Thread starter #3 2Plan MIS Joined Mar 29, 2005 Messages 55 Location US This code changes "00:12" to "12:12" instead of "24:12" and "01:25" to "13:11" instead of "25:11 Upvote 0 Downvote
Jan 9, 2006 #4 snyperx3 Programmer Joined May 31, 2005 Messages 467 Location US My apologies: Time: Cstr(Cint(Left([YourFieldName],2)) + 24) & Right([YourFieldName],3) -Pete Upvote 0 Downvote