Ranking with Excel for a Team based on different criteria

CANDICE48

New Member
Joined
Feb 5, 2019
Messages
2
Hi, Please can someone assist, I am trying to create a ranking based on multiple criteria. Each section has been ranked now I would like to see who is leading in terms of a "FINAL RANK" based on all the ranks. please can someone assist me? Please can someone assist with a formula

MBRRankNPIRankCORRRankFINAL RANK
NG9.83114.6312338?
MW9.7829.6742377?
LS9.3544.6494502?
RB9.4037.7362964?
CN9.3056.4382796?
JP8.75610.9131909?
TM8.4296.9674173?
MM8.6288.0355061?
SM8.67713.8622885?

<tbody>
</tbody>
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
How about this formula in the first question mark cell then drag down:

=AVERAGE(D2,F2,I2)
 
Upvote 0
Hi, thank you for this, but its giving me duplicate rankings :(: Please help, I want it to rank from 1-9, with one being the best:

MBRRankNPIRankCORRRankFINAL RANK
NG9.83114.63123383
MW9.7829.67423774
LS9.3544.64945025
RB9.4037.73629644
CN9.3056.43827966
JP8.75610.91319096
TM8.4296.96741736
MM8.6288.03550615
SM8.67713.86228855

<colgroup><col><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
In order to do that maybe there needs to be more weight for one of the rankings.
 
Upvote 0
It is actually up to you to DECIDE how to calculate the Final Rank.
Normally, when an evaluation is made based on several different criteria some of them will have more weight than others.
So each criteria will have a coefficient. Normally the sum of all coefficients will be 1. (coeff1+coeff2+coeff3+...=1) (or you can do it as 100%)
So for each line you can get a total score like: Score1*coeff1+score2*coeff2 + score3*coeff3 + .... = Total score
Then you can rank the total score.
At least this is how I would do it. The coefficients are arbitrary, depend on the topic and are usually a matter of personal choice).

P.S.: It is not impossible to have same ranks. And it happens all the time - one thing compensates for another.
 
Last edited:
Upvote 0
I will check back soon but something like this:

Weighted result
=B2*0.25+C2*0.3+D2*0.4+E2*0.05
=B3*0.25+C3*0.3+D3*0.4+E3*0.05
=B4*0.25+C4*0.3+D4*0.4+E4*0.05
=B5*0.25+C5*0.3+D5*0.4+E5*0.05


Rank
=RANK(F2,$F$2:$F$5)=RANK(F3,$F$2:$F$5)=RANK(F4,$F$2:$F$5)=RANK(F5,$F$2:$F$5)

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Okay I put this together with percentage of weight for each category. You can alter the percentages for your needs:

Excel Workbook
ABCDEFGHI
1MBRRankNPIRankCORRRankWeighted ResultFINAL RANK
250%30%20%
3NG9.83114.631233855.9047.00
4MW9.7829.674237755.1918.00
5LS9.3544.649450296.0672.00
6RB9.437.736296466.2194.00
7CN9.356.438279662.3796.00
8JP8.75610.913190945.6489.00
9TM8.4296.967417389.6983.00
10MM8.6288.0355061107.9191.00
11SM8.67713.862288566.0935.00
Sheet1
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,490
Members
448,967
Latest member
visheshkotha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top