Hour function equivelent help

E

EAB1977

If I want to find out how many minutes there are for times that I have
summed, I know I can use the hour function if the compiled time is
less than 24 hours. But, what if I want to get the times that are over
a 24 hour period, how do I do that?

Example:

20:57:46
14:39:10
8:57:24
12:12:12
 
D

Dave Peterson

You can keep the sum as a time, but give the cell a custom format of:\
[mm]

Or you could multiply by hours/day * minutes/hour:

=sum(A1:A4)*24*60

and format the cell as General (or number) -- but not time.
 
G

Glenn

EAB1977 said:
If I want to find out how many minutes there are for times that I have
summed, I know I can use the hour function if the compiled time is
less than 24 hours. But, what if I want to get the times that are over
a 24 hour period, how do I do that?

Example:

20:57:46
14:39:10
8:57:24
12:12:12


If your times above are in A1:A4, put this in A5:

=SUM(A1:A4)*1440

Format the result as a number. That is assuming the answer you want is 3,406.53
minutes. Be more specific if that's not what you are looking for.
 

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