Forum Discussion
Overall/Final Rank from multiple ranked lists
Lets say I have from 25 sources of the same lists of data of items that have been ranked.
The data list has 5 items ranked from position 1 (best) to position 5 (worst). How do I create an overall rank list based on the input from 25 lists?
For simplicity sake here is the list of data arranged in the following layout:
Item Tom's Rank **bleep**'s Rank Harry's Rank etc etc Overall Rank
Watch TV 3 1 2
Read Book 2 5 1
Gardening 5 4 3
Cleaning 4 3 4
Cooking 1 2 5
Not sure if this is known as weighted average? Its a subjective list from 25 people with their rankings and I just need to calculate the final average ranking.
Any Ideas?
Thanks,
Jay.
6 Replies
- TwifooSilver Contributor
You may use a helper column and an overall rank, like in the attached file.
- Detlef_LewinSilver Contributor
You can use AVERAGE() or MEDIAN() or MODE() to calculate a value for each item.
I would suggest either MEDIAN() or MODE().
- AVP68Copper Contributor
Detlef_Lewin I tried few of these and The MEDIAN and AVERAGE gives more accurate results and better suited. Thanks.