Mar 23, 2011 #1 k1o1k Technical User Joined Mar 23, 2011 Messages 3 Location US i have string values like 001030, and i need to convert it into hh:mm:ss format. Example, 00:10:30. Any solution for it?? Thanks!
i have string values like 001030, and i need to convert it into hh:mm:ss format. Example, 00:10:30. Any solution for it?? Thanks!
Mar 24, 2011 #2 IanWaterman Programmer Joined Jun 26, 2002 Messages 3,511 Location GB @time left(yourfield,2)&":"&mid(yourfield, 3,2)&":"&right(yourfield,2) Ian Upvote 0 Downvote