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

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
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,826
Messages
6,121,794
Members
449,048
Latest member
greyangel23

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