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
 
Hello again,

This is what I have so far

Column A: competition number (101,102,103,104)
Column B: score (87,89,86,89)
Column C: the countif formula
Column D: rank without skipping numbers
Column G: the index formula

i want in Column F for it to say 1st next to the highest score in column G but if there is a tie for 1st it will say 1st for both and then 2nd 3rd etc. I just want it to do ties without skipping. I’ve tried the small formula but if their is duplicates it doesn’t work.

Please help me ASAP

Thanks so much
 
Upvote 0

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Here you go. I have made two variants of the rank. One assumes that if the first two players tie the next one is 3rd, in the other one (which seems to follow from your description) the next after the first two is actually 2nd. Choose whichever you prefer.

Book2 (version 1).xlsb
ABCDEF
1
2idscorehelpidrank v. 1rank v. 2
317741211
435476511
55378832
66755143
78893654
8121011454
94756375
10651012586
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))
E3:F3E3=1
E4:E10E4=IF(INDEX($B$3:$B$10,MATCH(ROW()-2,$C$3:$C$10,0))=INDEX($B$3:$B$10,MATCH(ROW()-3,$C$3:$C$10,0)),E3,ROW()-2)
F4:F10F4=IF(INDEX($B$3:$B$10,MATCH(ROW()-2,$C$3:$C$10,0))=INDEX($B$3:$B$10,MATCH(ROW()-3,$C$3:$C$10,0)),F3,F3+1)
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,665
Members
449,462
Latest member
Chislobog

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