Ranking - How skip to avoid duplication

Paul Naylor

Board Regular
Joined
Sep 2, 2016
Messages
98
Office Version
  1. 365
  2. 2003 or older
Platform
  1. Windows
  2. Mobile
  3. Web
Hi I've got a list of colleagues Column A A2-A35 and a list of no of errors they have made.

Rank in column H Rank 1,2,3,4,5
Rank volume in column I
Rank Name in Column J

RANK Volume formula :LARGE($B$2:$B$32, H3)

Rank Name Formula : =INDEX($A$2:$A$32, MATCH(LARGE($B$2:$B$32, H3), $B$2:$B$32, 0)

Problem is there are a number of colleagues with the same number of errors, but formula only picks up the 1st occurance of the one who has the ranked volume , so 2nd person is showing under 2,3 and 4th Rank and the last person is showing as the 5th Rank. As the data set gets bigger there should be some variation but now just need some way if multiple colleagues have same number of errors either displaying all their names or substituting the Colleague name for the volume of the errors e.g. Rank 1 volume 4 . 3 colleagues
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
See if this example helps

Pasta3
ABCDEF
1NamesErrorsRankLargeName
2Name15110Name10
3Name2829Name5
4Name3239Name7
5Name4848Name2
6Name5958Name4
7Name67
8Name79
9Name86
10Name96
11Name1010
Plan10
Cell Formulas
RangeFormula
E2:E6E2=LARGE(B$2:B$11,D2)
F2:F6F2=INDEX(A$2:A$11,AGGREGATE(15,6,(ROW(A$2:A$11)-ROW(A$2)+1)/(B$2:B$11=E2),COUNTIF(E$2:E2,E2)))


Try to adapt it to your real case.

M.
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,639
Members
449,093
Latest member
Ahmad123098

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