charlierb3
New Member
- Joined
- Oct 16, 2009
- Messages
- 24
- Office Version
- 365
- Platform
- Windows
I'm creating a weekly pickem pool and want to rank players from high score to lowest and compare the current weeks ranking to the previous week
So if I enter each player's points each week in a sheet called Scores:
I want another sheet called Rank that looks like
I'd like each player's points to get summed each week from the scores table =Sum(!Scores($B$2:$R$11)) and each player ranked 1-10 (ties are fine) based on the totals. But I also want to know how the player's ranking has changed compared to last week. So if it was week 3, I'd want only the scores for weeks 1 and 2 summed. A formula that says "Sum all but the last non-blank column" and rank them.
Any help is appreciated
So if I enter each player's points each week in a sheet called Scores:
Book1 | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | |||
1 | Player | Week 1 | Week 2 | Week 3 | Week 4 | Week 5 | Week 6 | Week 7 | Week 8 | Week 9 | Week 10 | Week 11 | Week 12 | Week 13 | Week 14 | Week 15 | Week 16 | Week 17 | Total | ||
2 | Player 1 | 9 | 9 | 1 | 19 | ||||||||||||||||
3 | Player 2 | 5 | 17 | 9 | 31 | ||||||||||||||||
4 | Player 3 | 1 | 14 | 2 | 17 | ||||||||||||||||
5 | Player 4 | 9 | 9 | 2 | 20 | ||||||||||||||||
6 | Player 5 | 9 | 15 | 12 | 36 | ||||||||||||||||
7 | Player 6 | 0 | 11 | 8 | 19 | ||||||||||||||||
8 | Player 7 | 10 | 11 | 7 | 28 | ||||||||||||||||
9 | Player 8 | 11 | 8 | 12 | 31 | ||||||||||||||||
10 | Player 9 | 8 | 0 | 8 | 16 | ||||||||||||||||
11 | Player 10 | 2 | 2 | 17 | 21 | ||||||||||||||||
Scores |
Cell Formulas | ||
---|---|---|
Range | Formula | |
S2:S11 | S2 | =SUM(B2:R2) |
I want another sheet called Rank that looks like
Book1 | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | Rank | Player | Total Points | Rank Last Week | |||
2 | 1 | Player 5 | 36 | 1 | |||
3 | 2 | Player 2 | 31 | 2 | |||
4 | 2 | Player 8 | 31 | 4 | |||
5 | 3 | Player 7 | 28 | 3 | |||
6 | 4 | Player 10 | 21 | 9 | |||
7 | 5 | Player 4 | 20 | 5 | |||
8 | 6 | Player 1 | 19 | 5 | |||
9 | 6 | Player 6 | 19 | 7 | |||
10 | 7 | Player 3 | 17 | 6 | |||
11 | 8 | Player 9 | 16 | 8 | |||
Rank |
I'd like each player's points to get summed each week from the scores table =Sum(!Scores($B$2:$R$11)) and each player ranked 1-10 (ties are fine) based on the totals. But I also want to know how the player's ranking has changed compared to last week. So if it was week 3, I'd want only the scores for weeks 1 and 2 summed. A formula that says "Sum all but the last non-blank column" and rank them.
Any help is appreciated