Hello Everyone,
I hope you can help me on this one which I thought to be easy, but not anymore
I short, I have a list of students who are associated with scores (more than 1 and some can be equal). I'm looking for a way to get an array of the students (that I will concatanate with TEXTJOIN) that have as maximum score a value that I have specified in another cell.
Example:
List of students having a maximum score of : 3
Result: A, C
As you can see in the table, students A and C have a maximum score equal to 3.
So far, I've been able to do that by using an extra column showing that maximum score per StudentID but I'm looking for a solution without extra column.
Thank you in advance for your time.
Solvap
I hope you can help me on this one which I thought to be easy, but not anymore
I short, I have a list of students who are associated with scores (more than 1 and some can be equal). I'm looking for a way to get an array of the students (that I will concatanate with TEXTJOIN) that have as maximum score a value that I have specified in another cell.
Example:
StudentID | Score |
---|---|
A | 3 |
C | 1 |
B | 4 |
A | 2 |
C | 3 |
D | 5 |
A | 3 |
B | 2 |
A | 2 |
D | 1 |
C | 3 |
C | 1 |
List of students having a maximum score of : 3
Result: A, C
As you can see in the table, students A and C have a maximum score equal to 3.
So far, I've been able to do that by using an extra column showing that maximum score per StudentID but I'm looking for a solution without extra column.
Thank you in advance for your time.
Solvap