Hi, I've looked through some conditional ranking threads but haven't found something which solves my inquiry but apologies if I may have missed a solution.
What I'm trying to do is to do something like a running rank based on point totals for a team and the cumulative weekly point totals.
For example
in column D, I create a running total of points for each team as the week's progress
in column E, I rank that cumulative total for all weeks
in column F, I would like to rank the total just up to the current week.
So, in row 3, I would have the rank of the dolphins total points (which is just 1 week) against the pats and bills for week 1,
then in row 7, would have the rank of the Dolphins total point total for week 1 and 2 against the pats and bills total points for week 1 and 2
then in row 9, would have the rank of the dolphins total points total for week 1, 2, and 3, against the pats and bills total points for weeks 1,2, and 3.
I hope my example makes sense. Happy to provide clarification if not and thank you in advance for your consideration.
What I'm trying to do is to do something like a running rank based on point totals for a team and the cumulative weekly point totals.
For example
in column D, I create a running total of points for each team as the week's progress
in column E, I rank that cumulative total for all weeks
in column F, I would like to rank the total just up to the current week.
So, in row 3, I would have the rank of the dolphins total points (which is just 1 week) against the pats and bills for week 1,
then in row 7, would have the rank of the Dolphins total point total for week 1 and 2 against the pats and bills total points for week 1 and 2
then in row 9, would have the rank of the dolphins total points total for week 1, 2, and 3, against the pats and bills total points for weeks 1,2, and 3.
a | b | c | d | e | f | |
1 | Week | Team | Weekly Points | Cumulative points for team | Cumulative points rank | Running Rank using cumulative points and week |
=sumifs(c:c,b:b,b2,a:a,"<=",a2) | =rank(d2,$d$2:$d$10,0) | ? | ||||
2 | 1 | Patriots | 10 | 10 | ||
3 | 1 | Dolphins | 5 | 5 | ||
4 | 1 | Bills | 10 | 10 | ||
5 | 2 | Patriots | 5 | 15 | ||
6 | 2 | Bills | 10 | 20 | ||
7 | 2 | Dolphins | 5 | 10 | ||
8 | 3 | Patriots | 5 | 20 | ||
9 | 3 | Dolphins | 10 | 20 | ||
10 | 3 | Bills | 10 | 30 |
I hope my example makes sense. Happy to provide clarification if not and thank you in advance for your consideration.