get average per hour?

G

Guest

I have got a couple of fiqures, the total time spent doing somthing,

format (h):mm

And the number of things done

but when i try to calculate the number of things done per hour, it dosent
work.

the caluculation should work out to be

51 (things)
20:31:44 (hours) - (shown on excel as 20:31 due to my formating)
should equal 2.49 per hour
but the calculation comes to 59.62??????

Please help
 
B

Bob Phillips

Time is store as a fraction of 1 day, so you need to multiply by 24

=things_done/(time_taken*24)

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
G

Guest

of course, thankyou!

Tim


Bob Phillips said:
Time is store as a fraction of 1 day, so you need to multiply by 24

=things_done/(time_taken*24)

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
A

Ardus Petus

Assuming things is in A1, hours is in A2, result in A3
=A2*24/A1 (format Standard)

The correct result is 0,40252723


HTH
 
B

Bob Phillips

You have inverted the objective, he wants items per hour, not time per item.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
A

Ardus Petus

You're damned right!

--
AP

Bob Phillips said:
You have inverted the objective, he wants items per hour, not time per item.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 

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