Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() 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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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) "Tim" wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
of course, thankyou!
Tim "Bob Phillips" wrote: 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) "Tim" wrote in message ... 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 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() =(a1/(a2*24) a1 = things a2 = time -- MABeatty ------------------------------------------------------------------------ MABeatty's Profile: http://www.excelforum.com/member.php...o&userid=32258 View this thread: http://www.excelforum.com/showthread...hreadid=522112 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming things is in A1, hours is in A2, result in A3
=A2*24/A1 (format Standard) The correct result is 0,40252723 HTH -- AP "Tim" a écrit dans le message de ... 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 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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) "Ardus Petus" wrote in message ... Assuming things is in A1, hours is in A2, result in A3 =A2*24/A1 (format Standard) The correct result is 0,40252723 HTH -- AP "Tim" a écrit dans le message de ... 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 |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're damned right!
-- AP "Bob Phillips" a écrit dans le message de ... 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) "Ardus Petus" wrote in message ... Assuming things is in A1, hours is in A2, result in A3 =A2*24/A1 (format Standard) The correct result is 0,40252723 HTH -- AP "Tim" a écrit dans le message de ... 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Average dynamic data cells over a one hour period? | Excel Discussion (Misc queries) | |||
Average based on Hour | Excel Worksheet Functions | |||
plotted Average | Charts and Charting in Excel | |||
What is this kind of average called? | Excel Worksheet Functions | |||
average function in Excel 2002 | New Users to Excel |