Averaging hours

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to get the average completion times for each day of the month. The completion times are in military time. Most of the completion times are before midnight, however there are some days that go past midnight, i.e. 01:00. Is there a way to get the average for the month

Thank
Peter
 
Hi Peter!

Averaging times is not essentially different from averaging any
number. Note that Excel times are recorded as a decimal part of a day,
so averaging is simply averaging of these decimals.

However, I suspect that you are wanting to average durations; the time
between starting and completion.

You can work out durations for each project allowing for a span of
midnight using:

=B1-A1+(B1<A1)

To calculate the average you can sum these separate results or you can
use the array entered formula:

=AVERAGE(B1:B30-A1:A30+(B1:B30<A1:A30))
Entered by pressing and holding down Ctrl+Shift and then pressing
Enter

Appears in the formula bar as
{=AVERAGE(B1:B20-A1:A20+(B1:B20<A1:A20))}

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)

It is imperative that the patches provided by Microsoft in its April
Security Release be applied to Systems as soon as possible. It is
believed that the likelihood of a worm being released SOON that
exploits one of the vulnerabilities addressed by these patches is VERY
HIGH.
See:
http://www.microsoft.com/security/protect/
 
Norman

What i'm having a problem with is completion times after midnight. I have a column, say L, that has completion times.
21:3
22:1
23:0
01:0
23:1
If I average the column, it comes up with 18:10, which is not right.
 
Use 25:00 for 01:00

--

Regards,

Peo Sjoblom


Peter said:
Norman,

What i'm having a problem with is completion times after midnight. I
have a column, say L, that has completion times.
 

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

Similar Threads

Working hours average 1
military time calculations 1
average with error 7
Sum and average number of days and hours 4
average if with time and date 0
MEAN in Military Time 4
Time Calculation 6
Daily Average 6

Back
Top