LARGE with Criteria without using Array?

danhenshy23

New Member
Joined
Oct 3, 2016
Messages
29
Hi,

I have a a column containing a list of scores (Column C) and another containing the list of checks completed (column B).

I have a SMALL formula which ranks Column C from lowest to highest, but I am wanting to have a formula in Column B which lists the number of completed checks from highest to lowest.

The purpose is so that someone who has scored 0% and has had 7 checks completed would appear higher than someone who has scored 0% but only had 2 checks completed.

I am trying to achieve this without the use of arrays if possible.

Thanks
Dan
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
You can combine score and checks into a decimal so your first score in your example would be 0.7 and the second 0.2 or 0.07 and 0.02 by score + (checks/100) and then carry on as you are
 
Upvote 0
I tried using jimrward's suggestion, but I may have misunderstood.

Sample data as follows: (hope this works)

A |B |C
Name |Checks |Score (%)
Bob | 4 | 0%
Chris | 1 | 0%
Tom | 3 | 0%
Alex | 1 | 16%
Neil | 3 | 16%

From the above data, the result I would want would be for Bob to appear at the top, as he has had the most checks completed but scored the lowest, followed by Tom, Chris, Neil and Alex.

Thanks
Dan
 
Upvote 0
Maybe...


A
B
C
D
E
1
Name​
Checks​
Score (%)​
Rank​
List​
2
Bob​
4​
0%​
1​
Bob​
3
Chris​
1​
0%​
3​
Tom​
4
Tom​
3​
0%​
2​
Chris​
5
Alex​
1​
16%​
5​
Neil​
6
Neil​
3​
16%​
4​
Alex​

Formula in D2 copied down
=COUNTIF($C$2:$C$6,"<"&C2)+1+COUNTIFS($C$2:$C$6,C2,$B$2:$B$6,">"&B2)

Formula in E2 copied down
=INDEX($A$2:$A$6,MATCH(ROWS(E$2:E2),$D$2:$D$6,0))

M.
 
Upvote 0

Forum statistics

Threads
1,221,481
Messages
6,160,083
Members
451,616
Latest member
swgrinder

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