Given an Excel file with three columns (similar to this): Group, Number and Rank.
Within the each group he must rank the values from smallest to greatest. If the values match they get the same ranking. So if a value is the largest, the rank would be 1. If it was the second largest, the rank would be 2 and so on.
Then this process should restart for the second set of values. How can this task be accomplished? Maybe using arrays/bubble sort?—but I’m not sure that’s the right approach.
I think I have the solution you are looking for – I had to do it in three columns though.
Assuming you have the group in column A and the score in volumn B; you are going to want to sort first by group and then by score.
Then you are going to want to go ahead and put the previously mentioned formula in column C2:
Then autofill that down.
Then you are going to want to put a counter in cell D2:
Then autofill that down.
Then you are going to want to put this equation in cell E2:
Then autofill that down.
There might be a simpler/better way to do this – but this will definitely give you what you are looking for: