convert a calculated value to Hours:Minutes:Seconds

G

Guest

I have searched the discussion board for the answer to my question but
unfortunately have not been able to apply any of the variations to my DB.

I have a field called LengthDF which is a number field and users enter the
duration in seconds of a Digital File into this field. (My ideal would be for
the user to be able to enter the duration in HH:MM:SS - but I realise that
for calculation purposes I will probably have to say that it has to be
entered in seconds or have a separate field for each - hours, minutes and
seconds.)

I have another field called DFLSum which calculates the total seconds e.g.
4316 seconds - which is 71 minutes and 56 seconds. my current formula is

=[DFLSum]\60 & Format([DFLSum] Mod 60,"\:00")

and shows 71:56 - but I need it to show 01:11:56

So my first question is can I use a single field to enter the duration in
hours, minutes and seconds and then have a total duration calculation showing
hours, minutes and seconds.

or must I have the user enter the duration in seconds - get a total seconds
caculation and then change the formatting to HH:MM:SS - if so how?

Any help or advise would be greatly appreciated!!!
 
D

Douglas J Steele

Here's some air-code functions that should convert back and forth:

Function HHMMSStoSeconds(TimeIn As String) As Long

Dim varTimes As Variant

varTimes = Split(TimeIn, ":")
If IsNull(varTimes) Then
HHMMSStoSeconds = 0
Else
Select Case UBound(varTimes)
Case 0 ' Assume only seconds passed
HHMMSStoSeconds = CLng(varTimes(0))
Case 1 ' Assume mm:ss passed
HHMMSStoSeconds = 60 * CLng(varTimes(0)) + _
CLng(varTimes(1))
Case 2 ' Assume hh:mm:ss passed
HHMMSStoSeconds = 3600 * CLng(varTimes(0)) + _
60 * CLng(varTimes(1)) + CLng(varTimes(2))
Case Else
HHMMSStoSeconds = 0
End Select
End If

End Function

Function SecondsToHHMMSS(SecondsIn As Long) As String

Dim lngHours As Long
Dim lngMinutes As Long
Dim lngSeconds As Long

lngHours = SecondsIn \ 3600
lngMinutes = (SecondsIn \ 60) - lngHours * 60
lngSeconds = SecondsIn Mod 60

SecondsToHHMMSS = Format(lngHours, "0") & ":" & _
Format(lngMinutes, "00") & ":" & _
Format(lngSeconds, "00")

End Function
 
G

Guest

Try this
int((8316/60)/60) & format(int(4316/60) mod 60,"\:00") & format(4316 mod
60,"\:00")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top