Showing ties in Large, Match formula

GoToLeep

New Member
Joined
Apr 28, 2024
Messages
2
Office Version
  1. 365
Platform
  1. MacOS
LARGE..I have a range of winning totals that run from c83 through au83. I am arranging them in order from highest number to the 9th highest number (positions) on row g132 through o132.

MATCH..then match each of those totals to the correct name from row c81 through au81 to show on row c131 through o131

Here are the formulas:
Starts at G132 and ends at O132
=LARGE(INDIRECT(“$C$83”):INDIRECT(“$AU$83”),1). Where the 1 changes to 2 through 9.

Starts at G131 and ends at O131
=INDEX($C$81:$AU$81, MATCH(G132, $C$83:$AU$83, 0)). Where the G132 changes to H132 through O132

These formulas as entered do not show the different names if there is a tie.

How do I accomplish this?

I tried to upload screenshots, but the files are too big.

Thank you!!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Try using a helper row and calculate a unique value for each score in row 83, then reference that row in your LARGE Formula.

For example, in row 84:
Excel Formula:
=RANK(C83,$C83:$AU83,1)+COUNTIFS($C83:C83,C83)-1

Then:
Excel Formula:
=LARGE($C$84:$AU$84,1)
 
Upvote 0
Clear G131:O132 & enter this in G131 only
Excel Formula:
=TAKE(SORT(VSTACK(C81:AU81,C83:AU83),2,-1,1),,9)
 
Upvote 1
Solution
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,949
Messages
6,127,880
Members
449,411
Latest member
AppellatePerson

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