If you need to have the code calculate how many hours
duration = CDbl(Left([Time taken],2)) + CDBL(Right([Time taken],2)/60
Then to convert this Hour calculation to a Date/Time format, use
MyTime = CDate(duration / 24)
Be aware, CDate is going to think that this value is a date/time value with December 30, 1899 having a date value of 0, January 1, 1900 with a date value of 2 and so on.
after converting this number, you can still keep adding to it, but then once you have your total time, you can then do the following:
Dim strTotalTime As String
strTotalTime = CSTR(Int(MyTotalTime*1440) mod 60)
strTotalTime = CSTR(Int(MyTotalTime*24)) & ":" & _
Left("0",2-Len(strTotalTime)) & _
strTotalTime
Ronald R. Dodge, Jr.
Production Statistician
Master MOUS 2000