Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I need help in trying to set up a work sheet that will keep track of an
average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Bob:
There is one function AVERAGE(B2:B13) and this will give the average of the numbers. The other method is to use SUM(B2:B13)/12 assuming the data is in B2:B13 and the time in A2:A13. -- Hope this helps Martin Fishlock, www.nyfconsultants.com, Wolverhampton, UK Please do not forget to rate this reply. "bob" wrote: I need help in trying to set up a work sheet that will keep track of an average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Bob
Assuming your data is entered in A1:X1 =(24*0.075-SUM(A1:INDEX(A1:X1,COUNT(A1:X1))))/ COUNTBLANK(A1:X1) will give you the average required for the remaining unfilled hours -- Regards Roger Govier "bob" wrote in message ... I need help in trying to set up a work sheet that will keep track of an average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thanks for the help. I will try and clarify.
"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message ... Hi Bob Assuming your data is entered in A1:X1 =(24*0.075-SUM(A1:INDEX(A1:X1,COUNT(A1:X1))))/ COUNTBLANK(A1:X1) will give you the average required for the remaining unfilled hours -- Regards Roger Govier "bob" wrote in message ... I need help in trying to set up a work sheet that will keep track of an average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Bob
In cell C24 enter =(24*0.075-SUM(A1:INDEX(A1:A24,COUNT(A1:A24)))) /COUNTBLANK(A1:A24) -- Regards Roger Govier "bob" wrote in message ... Thanks for the help. I will try and clarify. "Roger Govier" <roger@technology4unospamdotcodotuk wrote in message ... Hi Bob Assuming your data is entered in A1:X1 =(24*0.075-SUM(A1:INDEX(A1:X1,COUNT(A1:X1))))/ COUNTBLANK(A1:X1) will give you the average required for the remaining unfilled hours -- Regards Roger Govier "bob" wrote in message ... I need help in trying to set up a work sheet that will keep track of an average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
#6
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thanks for all the help but none of the formulas are giving me what I want.
"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message ... Hi Bob In cell C24 enter =(24*0.075-SUM(A1:INDEX(A1:A24,COUNT(A1:A24)))) /COUNTBLANK(A1:A24) -- Regards Roger Govier "bob" wrote in message ... Thanks for the help. I will try and clarify. "Roger Govier" <roger@technology4unospamdotcodotuk wrote in message ... Hi Bob Assuming your data is entered in A1:X1 =(24*0.075-SUM(A1:INDEX(A1:X1,COUNT(A1:X1))))/ COUNTBLANK(A1:X1) will give you the average required for the remaining unfilled hours -- Regards Roger Govier "bob" wrote in message ... I need help in trying to set up a work sheet that will keep track of an average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
#7
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Bob
That's not too helpful. Explain what you have done, what is not right and what it is that you want, then maybe we can give some further help. -- Regards Roger Govier "bob" wrote in message ... Thanks for all the help but none of the formulas are giving me what I want. "Roger Govier" <roger@technology4unospamdotcodotuk wrote in message ... Hi Bob In cell C24 enter =(24*0.075-SUM(A1:INDEX(A1:A24,COUNT(A1:A24)))) /COUNTBLANK(A1:A24) -- Regards Roger Govier "bob" wrote in message ... Thanks for the help. I will try and clarify. "Roger Govier" <roger@technology4unospamdotcodotuk wrote in message ... Hi Bob Assuming your data is entered in A1:X1 =(24*0.075-SUM(A1:INDEX(A1:X1,COUNT(A1:X1))))/ COUNTBLANK(A1:X1) will give you the average required for the remaining unfilled hours -- Regards Roger Govier "bob" wrote in message ... I need help in trying to set up a work sheet that will keep track of an average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
#8
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
This seems like an algebra question, not an Excel question. (Although there
could be an Excel question behind it.) In general, if you have n of 24 hourly data, h[1] through h[n], then you are looking for x, the average remaining hourly data, such that: ( h[1] + ... + h[n] + (24-n)*x ) / 24 = 0.075 So: x = ( 24*0.075 - (h[1] + ... + h[n]) ) / (24-n) In Excel terms, if A1 contains the target average (0.075) and if B1 up to B24 contain the hourly data that you have, then: =(24*A1 - SUM(B1:B24)) / (24 - COUNT(B1:B24)) ----- original message ----- "bob" wrote: I need help in trying to set up a work sheet that will keep track of an average. I also need to know what I have to maintain to get the average I am looking for. Example: I need to average .075 over a 24 hour period, lets say that I have 12 hours of data, i need to know what I have to average the remaining hours to get my .075. I enter the hourly numbers myself. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I average hourly data into daily data? | Excel Discussion (Misc queries) | |||
Using a time value in an Excel formula to figure an hourly average | Excel Discussion (Misc queries) | |||
How to convert half hourly data into hourly | Excel Discussion (Misc queries) | |||
hourly rates | Excel Discussion (Misc queries) | |||
Hourly rates | Excel Worksheet Functions |