Ranking based on multiple columns having different weightage.

northtwister

New Member
Joined
Feb 9, 2016
Messages
2
There are multiple threads of Ranking based on multiple columns but still I am posting new.
Please try to help me.
CircleCoreCoreCollectorCollectorMetroMetro
AVL# of LinksAVL# of LinksAVL# of Links
Kerala97.85%1297.15%2099.42%47
Punjab99.89%396.68%199.82%73
Karnatak95.21%995.85%2000
Delhi0099.14%1999.89%14
Kashmir0099.4100
Assam0055.23300

<tbody>
</tbody>

As you can see the table there is availability for each circle and their number of links.
Core has weightage of 50%
Collector has weightage of 25%
Metro has weightage of 25%

Few states link Kerala & Punjab has all 3 populated.
Few state link Karnataka & Delhi dont have Metro and Core links respectively
And Kashmir & Assam just have 1 & 3 links of collector.

So based on these details I have to rank Circles. Highest number of links and Highest AVL% state to be declared as 1st.

Thanks in Advance.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
You don't have a lot of information needed, but you can just multiply the columns by they weight and then rank the total.

Assuming Table starts in A1 and goes to G8:

H3=
Code:
=(B3*0.5)+(D3*0.25)+(F3*0.25)

You can drag that over to I3:I8.

Then, just rank them. This goes in J3:

Code:
=(RANK(H3,$H$3:$H$8)+RANK(I3,$I$3:$I$8))/2
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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