Using RANK, INDEX and MATCH

Dearster

New Member
Joined
May 17, 2011
Messages
20
Can anyone help me using RANK, INDEX and MATCH.

Basically I have 3 seperate values, 2 in one column and 1 in another column. These values relate to a department name. I want to make a leader board list of the department names. So I would need to connect the names to the values and then rank the values and output the rank.

Thank you.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
3 department names: Bakery, Fresh Foods, Produce.

3 values as percentages.

I need to link the percentage values to the department somehow.

Example Ranked List

1st Bakery
2nd Fresh Foods
3rd Produce

List dependent upon the higher percentage.
 
Upvote 0
To get result like this in ColC or anywhere
ColA-- ColB----- ColC
%----- Dept---- Rank
10%--- Bakey----Produce-25%
5%---- Fresh----Bakey-10%
25%--- Produce--Fresh-5%

use the formula like this for highest
Code:
=VLOOKUP(LARGE($A$2:$A$4,1),$A$2:$B$4,2,0)&"-"&(LARGE($A$2:$A$4,1)*100)&"%"

Code:
=VLOOKUP(LARGE($A$2:$A$4,2),$A$2:$B$4,2,0)&"-"&(LARGE($A$2:$A$4,2)*100)&"%"

large function will give you the highest value in a range defined by the numbers like
(LARGE($A$2:$A$4,1)
(LARGE($A$2:$A$4,2)
(LARGE($A$2:$A$4,3) etc

I dont know how your worksheets looks, post a sample using HTML maker or send an email to mail.aravindhan@gmail.com
 
Upvote 0

Forum statistics

Threads
1,224,506
Messages
6,179,158
Members
452,892
Latest member
yadavagiri

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