Averaging Time

P

PeterM

I would like to take the average of a list of times in the format HH/MM/SS
but I get gibberish.
Why is this and how do I return and average value from this data set with
the format HH/MM/SS?
 
G

galimi

Peter,

If you are summing dates that are already in HH:MM:SS format, you will
likely run into a challenge when you exceed 24 hours as the clock will then
roll. If you are using whole numbers, like 8, to designate 8 hours and are
displaying that in date format, you are not going to see 8 hours, but zero,
the rollover of 8 days.
 
R

Roger Govier

Hi Peter

Just use
=AVERAGE(A1:A10) where A1:A10 hold your times.
Format the cell with formula Format>Cells>Number>Custom>[hh]:mm:ss to
allow for an average which exceeds 24 hours.
 
D

David Biddulph

If you've got times rolling over beyond the 24 hour mark, use the cell
format [h]:mm:ss.
 
D

daddylonglegs

What sort of times do you have, clock times, i.e. the time something
happened, or elapsed times, e.g. for a running race, for instance?

Roger Govier said:
Hi Peter

Just use
=AVERAGE(A1:A10) where A1:A10 hold your times.
Format the cell with formula Format>Cells>Number>Custom>[hh]:mm:ss to
allow for an average which exceeds 24 hours.

--
Regards

Roger Govier


PeterM said:
I would like to take the average of a list of times in the format
HH/MM/SS
but I get gibberish.
Why is this and how do I return and average value from this data set
with
the format HH/MM/SS?
 

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