Hi Excel Experts,
I was wondering if you could help me work out something with my sheet below:
I am trying to get the Person with the Highest Score based on which House they belong to.
So For House Crayne, I want it to return
137518 Jessica va 10
Then same for the top scorers of each of the other houses.
I am currently using the formula: {=INDEX(A2:A$13,MATCH(MAX(IF((E$2:$E$13="Crayne"),F2:F13)),F2:F13,0))}
However no matter which house I change the name to, it keeps giving the same data.
Also I am unsure of how to distinguish it if there are two people with the same score.
Any help is greatly appreciated!
I was wondering if you could help me work out something with my sheet below:
Book4 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | UID | Preferred | Surname | Year Level | House | Score | ||
2 | 137565 | James | ca | 7 | Boold | 10 | ||
3 | 137518 | Jessica | va | 7 | Crayne | 10 | ||
4 | 137819 | Jadon | ds | 7 | Boold | 10 | ||
5 | 137684 | Brett | acer | 7 | Boold | 3 | ||
6 | 137706 | Bob | rap | 7 | Crayne | 5 | ||
7 | 137807 | Bailey | er | 7 | Starlock | 10 | ||
8 | 137786 | Charlie | sdr | 7 | Crayne | 2 | ||
9 | 137531 | Charles | fds | 7 | Boold | 1 | ||
10 | 138221 | Tim | Row | 7 | Boold | 8 | ||
11 | 137575 | Tina | daf | 7 | McAurey | 10 | ||
12 | 137791 | Sophia | gat | 7 | Crayne | 9 | ||
13 | 137745 | Olivia | stag | 7 | Starlock | 9 | ||
Sheet1 |
I am trying to get the Person with the Highest Score based on which House they belong to.
So For House Crayne, I want it to return
137518 Jessica va 10
Then same for the top scorers of each of the other houses.
I am currently using the formula: {=INDEX(A2:A$13,MATCH(MAX(IF((E$2:$E$13="Crayne"),F2:F13)),F2:F13,0))}
However no matter which house I change the name to, it keeps giving the same data.
Cell Formulas | ||
---|---|---|
Range | Formula | |
J6 | J6 | =INDEX(A2:A$13,MATCH(MAX(IF((E$2:$E$13="Boold"),F2:F13)),F2:F13,0)) |
K6 | K6 | =INDEX(B2:B$13,MATCH(MAX(IF((E$2:$E$13="Boold"),F2:F13)),F2:F13,0)) |
L6 | L6 | =INDEX(C2:C$13,MATCH(MAX(IF((E$2:$E$13="Boold"),F2:F13)),F2:F13,0)) |
M6 | M6 | =INDEX(F2:F$13,MATCH(MAX(IF((E$2:$E$13="Boold"),F2:F13)),F2:F13,0)) |
J7 | J7 | =INDEX(A2:A$13,MATCH(MAX(IF((E$2:$E$13="Crayne"),F2:F13)),F2:F13,0)) |
K7 | K7 | =INDEX(B2:B$13,MATCH(MAX(IF((E$2:$E$13="Crayne"),F2:F13)),F2:F13,0)) |
L7 | L7 | =INDEX(C2:C$13,MATCH(MAX(IF((E$2:$E$13="Crayne"),F2:F13)),F2:F13,0)) |
M7 | M7 | =INDEX(F2:F$13,MATCH(MAX(IF((E$2:$E$13="Crayne"),F2:F13)),F2:F13,0)) |
Press CTRL+SHIFT+ENTER to enter array formulas. |
Also I am unsure of how to distinguish it if there are two people with the same score.
Any help is greatly appreciated!