Rank multiple factors skipping if below criteria

j1987

New Member
Joined
Jun 2, 2015
Messages
1
Hi,

I have a league table that I use to measure performance of staff.

Column A contains the Rank formula for 22 people ( 1-22 top to bottom)

Column B contains a varying sum of total amount of money collected (with most money collected going at top of the rank least at the bottom)

Column C contains a percentage figure for scoring KPI's

-----------------

I want to be able to Rank people in Column A based on most amount of money collected figure in column B

However if they score below 85% on their Column C percentage, I want the rank to skip that person and person below would take their rank.

e.g.

Rank Total Collected %
1 £1000 94.03%
2 £946 85.07%
£933 78.03%
3 £807 92.01%
£788 83.04%
4 £733 86.05%


Any help would be appreciated.

Thanks
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
You could use:

=IFERROR(RANK(IF(C2>=85,B2),$B$2:$B$7,0),"")

But that will return 1, 2, blank, 4, blank, 6... so 1 2 4 6 instead of 1 2 3 4... to deal with that I would just insert a column between A and B to "rank the rank" in column A, such as:

=IFERROR(RANK(A2,$A$2:$A$7,1),"")
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,602
Members
449,089
Latest member
Motoracer88

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