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 HoursToTimeParts(Hours As Double) As String
HoursToTimeParts = Int(Hours) & "hrs " & Format$(CDate(Hours / 24), "nn\m\i\n\s ss\s\e\c\s")
End Function