Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function basSec2Day(lngSecIn As Long) As String
'Michael Red 11/11/2003 Tek-Tips thread703-695284 for Arryb
Const SecPerDay As Long = 86400
Dim MySecs As Long
Dim Idx As Integer
MySecs = lngSecIn
While MySecs > SecPerDay
MySecs = MySecs - SecPerDay
Idx = Idx + 1
Wend
basSec2Day = Str(Idx) & " Days and " & Format(MySecs / 86400, "h:m:s")
End Function