Here is a small sample below. I have about 12,000 rows of energy usage data by the hour per day.
I would like to know what my average kWh usage is at a specific hour per month. I think I need to use some kind of index/match sum function, but I'm not really sure how to do it. I also played with some pivot charts, but I couldnt get that to return anything worthwhile.
Column A is the date, column B is the hour, Column C is my off-peak usage, and column D is on peak usage.
day hour offpeak kWh onpeak kWh
8/11/2017 11:00 PM 6.69
8/11/2017 10:00 PM 8.65
8/11/2017 9:00 PM 6.82
8/11/2017 8:00 PM 4.61
8/11/2017 7:00 PM 4.62
8/11/2017 6:00 PM 5.1
8/11/2017 5:00 PM 6.35
8/11/2017 4:00 PM 4.78
8/11/2017 3:00 PM 3.51
8/11/2017 2:00 PM 3.93
8/11/2017 1:00 PM 2.85
8/11/2017 12:00 PM 1.96
8/11/2017 11:00 AM 3.54
8/11/2017 10:00 AM 4.2
8/11/2017 9:00 AM 2.69
8/11/2017 8:00 AM 3.97
8/11/2017 7:00 AM 3.05
8/11/2017 6:00 AM 2.33
8/11/2017 5:00 AM 3.39
8/11/2017 4:00 AM 5.21
8/11/2017 3:00 AM 5.14
8/11/2017 2:00 AM 5.45
8/11/2017 1:00 AM 6.32
8/11/2017 12:00 AM 3.55
Thanks in advance!
I would like to know what my average kWh usage is at a specific hour per month. I think I need to use some kind of index/match sum function, but I'm not really sure how to do it. I also played with some pivot charts, but I couldnt get that to return anything worthwhile.
Column A is the date, column B is the hour, Column C is my off-peak usage, and column D is on peak usage.
day hour offpeak kWh onpeak kWh
8/11/2017 11:00 PM 6.69
8/11/2017 10:00 PM 8.65
8/11/2017 9:00 PM 6.82
8/11/2017 8:00 PM 4.61
8/11/2017 7:00 PM 4.62
8/11/2017 6:00 PM 5.1
8/11/2017 5:00 PM 6.35
8/11/2017 4:00 PM 4.78
8/11/2017 3:00 PM 3.51
8/11/2017 2:00 PM 3.93
8/11/2017 1:00 PM 2.85
8/11/2017 12:00 PM 1.96
8/11/2017 11:00 AM 3.54
8/11/2017 10:00 AM 4.2
8/11/2017 9:00 AM 2.69
8/11/2017 8:00 AM 3.97
8/11/2017 7:00 AM 3.05
8/11/2017 6:00 AM 2.33
8/11/2017 5:00 AM 3.39
8/11/2017 4:00 AM 5.21
8/11/2017 3:00 AM 5.14
8/11/2017 2:00 AM 5.45
8/11/2017 1:00 AM 6.32
8/11/2017 12:00 AM 3.55
Thanks in advance!