×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Microsoft: Office FAQ

Date/Time Functions

How to convert hours/mins/seconds greater than one day to seconds by Mikeauz
Posted: 27 Sep 04

Hi,

In converting Hours:Mins:seconds to seconds I was always a beleiver of using =(HOUR($A1)*3600)+(MINUTE($A1)*60)+(SECOND($A1)) but recently discovered that Excel stores times greater than 24 hours as days/months/years/hours/minutes/seconds

To get around this problem paste the following into a module:

Public Function TSITSeconds(CellName) As String
Dim Result, TotResult As String
Dim newname As Integer

TotResult = 0
newname = Int(CellName)

TotResult = (newname * 86400)

TotResult = TotResult + (Hour(CellName) * 3600)
TotResult = TotResult + (Minute(CellName) * 60)
TotResult = TotResult + (Second(CellName))
TSITSeconds = TotResult
End Function

and to use it type this in your excel sheet:

=TSITSeconds(YourCellAddress)

This will give you youre answer in seconds

Hope it Helps
Mike

Back to Microsoft: Office FAQ Index
Back to Microsoft: Office Forum

My Archive

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close