HOW TO: RANK.EQ With an upper Limit...

Darth269

New Member
Joined
Oct 4, 2018
Messages
15
I'm trying to rank some stats. The problem is that I don't want to encourage blind use of a particular work related function, and so I only want to count up to 100%, anything over 100% should be considered as 100%.


However I also need to display the actual results still, so I cant just edit the raw data.


I have a table of scores... and a table of ranked scores next to it... (Below for the purpose of this explanation)





PERSON 1 76%
PERSON 2 202%
PERSON 3 62%
PERSON 4 71%
PERSON 5 79%
PERSON 6 100%
PERSON 7 122%
PERSON 8 69%
PERSON 9 95%
PERSON 10 76%
PERSON 11 132%
PERSON 12 81%
PERSON 13 150%

Using...
Code:
=IF(C68="","",(RANK.EQ(C68,C$68:C$80,1)))
For Person 1 and dragging down, I get ...


4
13
1
3
6
9
10
2
8
5
11
7
12

What I should get is a result showing all the 100% and over scores as the same...

4

9

1

3

6

9

9

2

8

5

9

7

9
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Apologies. Try:

=IF(C68="","",(RANK.EQ(IF(C68>1,MAX(C$68:C$80),C68),C$68:C$80,1)))

Regards
 
Upvote 0

Forum statistics

Threads
1,216,474
Messages
6,130,841
Members
449,598
Latest member
sunny_ksy

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