Hi, I am trying to calculate the maximum sum of values within an hour in column. Because the number of values within an hour isn't constant (see my example below) I'm having a lot of trouble trying to get this to work.
As you can see in the sheet below, the times are in column A and the value associated with that time is in column B. In the example below it should output 26% as this is the maximum hour worth of values.
Also, I need it to be a formula father than any VBA. Anyone know how to solve this problem?
Thanks in advance!
As you can see in the sheet below, the times are in column A and the value associated with that time is in column B. In the example below it should output 26% as this is the maximum hour worth of values.
Also, I need it to be a formula father than any VBA. Anyone know how to solve this problem?
Thanks in advance!
Test.xlsx | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | Time | Value | Max Hour | 26 | |||
2 | 05:45 | 2 | |||||
3 | 05:45 | 3 | |||||
4 | 07:45 | 4 | |||||
5 | 10:45 | 2 | |||||
6 | 10:45 | 8.7 | |||||
7 | 11:00 | 6.2 | |||||
8 | 11:15 | 2.1 | |||||
9 | 11:45 | 7 | |||||
10 | 13:15 | 2.1 | |||||
11 | 16:30 | 2.1 | |||||
12 | 16:30 | 2 | |||||
13 | 16:45 | 2 | |||||
Sheet1 |