I NEED HELP PLEASSEEE

adurham22926192

New Member
Joined
Dec 17, 2019
Messages
49
Office Version
  1. 2019
Platform
  1. Windows
Hi I have the competitor numbers in column A (A1: 101, A2:108 etc) and their score in column B (B1: 87.00, B2: 84.00) and i need a formula for C1 to look up the highest score in the column B and return the competitors number, and so on so look up the second largest score and return the competitors number.

Please help thanks so much
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Here it is. At the moment it assumes there are no ties. Please let me know if they are pssible and what you expect then.

Book2
ABC
117712
23548
35371
46756
58893
6121015
741265
865344
Sheet1
Cell Formulas
RangeFormula
C1:C8C1=INDEX($A$1:$A$8,MATCH(LARGE($B$1:$B$8,ROW()),$B$1:$B$8,0))
 
Upvote 0
My formulas are designed to start in row 1. If you are using them elsewhere, you should adjust them by replacing ROW() with (ROW()-n+1), if you are starting in row n.
 
Upvote 0
Use ROW()-2 in place of ROW()
 
Upvote 0
It depends on what you want. If you tell me what you expect in such cases, I can try programming it.
 
Upvote 0
So say competitior no. 1 got 100 points and competitor 2 and 3 got 90 points each i want the formula to say both the numbers not just 102 twice
 
Upvote 0
Here you are. Column C is helper data, you can hide it (right-click on the coulmn header, choose "Hide").
Book2
ABCD
1
2
3177312
435468
553771
667546
788924
81210113
947555
106534865
Sheet1
Cell Formulas
RangeFormula
C3:C10C3=COUNTIF($B$3:$B$10,">"&B3)+COUNTIF(B$3:B3,"="&B3)
D3:D10D3=INDEX($A$3:$A$10,MATCH(ROW()-2,$C$3:$C$10,0))
 
Upvote 0

Forum statistics

Threads
1,214,592
Messages
6,120,433
Members
448,961
Latest member
nzskater

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