Conditional Ranking

mang121

New Member
Joined
Nov 14, 2017
Messages
10
Hi. I am trying to rank a range of cells base on certain criteria:

Criteria 1 - No ties using column G as the tie breaker.
Criteria 2 - Do not rank the columns that state "Not Qualified"

Here is my current formula:

RANK(AJ9,AJ$9:AJ$18)+SUMPRODUCT(--($AJ$9:$AJ$18=AJ9),--($G$9:$G$18>G9))

G AJ AK AL

149854.93 34 34 3
349614.25 35 Not Qualified 2
139012.59 36 36 1





Any thoughts on how to rank column AL based on point values in AJ1:AJ3 and continuing to use Column G as a tie breaker while not including value AK2 would be much appreciated.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Welcome to Mr Excel forum

Question: what would be the expected results fin the case below (note that AJ3 = AJ4)?


G​
AJ​
AK​
AL​
149854,93​
34​
34​
?​
349614,25​
35​
Not Qualified​
?
139012,59​
36​
36​
?​
120000,00​
36​
36​
?​

<tbody>
</tbody>


M.
 
Upvote 0
The expected result in AL would be a rank of:
3
4
1
2

I was able to get it to not rank the "Not Qualified" but lost my tie breaker with this:
IF(NOT($J9>=100%),"Not Qualified",IF(OR(NOT($P9>=100%),NOT($V9>=100%)),"Not Qualified",SUMPRODUCT(--($P$9:$P$18>=100%),--($V$9:$V$18>=100%),--($AJ$9:$AJ$18>$AJ9))+1))
 
Upvote 0
See if this does what you need

AL1 copied down
=IF(ISNUMBER(AK1),COUNTIFS($AJ$1:$AJ$4,">"&AJ1,AK$1:AK$4,"<>Not Qualified")+1+COUNTIFS(AJ$1:AJ$4,AJ1,AK$1:AK$4,"<>Not Qualified",G$1:G$4,">"&G1),"")

Hope this helps

M.
 
Upvote 0
The formula above assumes the data in rows 1:4. It seems your data are in rows 9:18, so adjust the ranges according to your case.

M.
 
Upvote 0

Forum statistics

Threads
1,215,482
Messages
6,125,060
Members
449,206
Latest member
Healthydogs

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