Hi, I hope someone can help. I have been pulling what little hair I have out...
I have the date from 01/06/13 - 01/06/14 (one year) with hourly data to be entered as in the format below. I need to find the average of today over the course of a year and also the rolling 3 monthly averages.
Sample Data below:
DATE TIME RESULT
13/06/2013 04:00 61.00
05:00 60.00
06:00 66.00
07:00 68.00
08:00 66.00
09:00 67.00
10:00 65.00
11:00 62.00
Shift Avg 64.86
12:00 63.00
13:00 68.00
14:00 55.00
15:00 66.20
16:00 75.20
17:00 77.00
18:00 79.00
19:00 65.00
Shift Avg 68.55
20:00 65.00
21:00 66.00
22:00 87.00
23:00 56.00
00:00 54.00
01:00 59.00
02:00
03:00
Shift Avg 64.50
Daily Avg 66.16
14/06/2013 04:00
05:00
etc.
The total historical averages were relatively easy with "=IF(ISERROR(AVERAGE(OFFSET(dataset1,28-1,0))),"",AVERAGE(OFFSET(dataset1,28-1,0)))"
How do I ask excel to find the day of the week (7-day) and average all of the daily avgs?
I'm guessing using match, index and offset with the average function, but am at a loss?
Thanks for the help!
I have the date from 01/06/13 - 01/06/14 (one year) with hourly data to be entered as in the format below. I need to find the average of today over the course of a year and also the rolling 3 monthly averages.
Sample Data below:
DATE TIME RESULT
13/06/2013 04:00 61.00
05:00 60.00
06:00 66.00
07:00 68.00
08:00 66.00
09:00 67.00
10:00 65.00
11:00 62.00
Shift Avg 64.86
12:00 63.00
13:00 68.00
14:00 55.00
15:00 66.20
16:00 75.20
17:00 77.00
18:00 79.00
19:00 65.00
Shift Avg 68.55
20:00 65.00
21:00 66.00
22:00 87.00
23:00 56.00
00:00 54.00
01:00 59.00
02:00
03:00
Shift Avg 64.50
Daily Avg 66.16
14/06/2013 04:00
05:00
etc.
The total historical averages were relatively easy with "=IF(ISERROR(AVERAGE(OFFSET(dataset1,28-1,0))),"",AVERAGE(OFFSET(dataset1,28-1,0)))"
How do I ask excel to find the day of the week (7-day) and average all of the daily avgs?
I'm guessing using match, index and offset with the average function, but am at a loss?
Thanks for the help!