Getting the same value twice with VLOOKUP

Steviefiege

Board Regular
Joined
Aug 29, 2018
Messages
66
Hi,
I have a list of players & there rating & there all ranked highest to lowest. But, when there are 2 players that have the same rating it only shows the top one, how do i get it to show the next one?

Example:

Coppinger, JamesAdvanced Playmaker57.00
Coppinger, JamesAdvanced Playmaker57.00

<colgroup><col style="mso-width-source:userset;mso-width-alt:4534;width:93pt" width="124"> <col style="mso-width-source:userset;mso-width-alt:5741;width:118pt" width="157"> <col style="width:48pt" width="64"> </colgroup><tbody>
</tbody>

The second one should be Kiwomya, Alex Inside Forward (Left) 57.00

Rgs
Steve
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
One way:

ABCDEFGHIJ
1NamePositionRatingNamePositionRatingRow
2AlFirst33Coppinger, JamesAdvanced Playmaker573
3Coppinger, JamesAdvanced Playmaker57Kiwomya, AlexInside Forward (Left)575
4BobSecond44BobSecond444
5Kiwomya, AlexInside Forward (Left)57AlFirst332
6

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
F2=IF(H2="","",INDEX(A:A,$I2))
G2=IF(I2="","",INDEX(B:B,$I2))
H2=IFERROR(LARGE(C$2:C$10,ROWS(H$2:H2)),"")

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Array Formulas
CellFormula
I2{=IF(H2="","",SMALL(IF(C$2:C$10=H2,ROW(C$2:C$10)),COUNTIF(H$2:H2,H2)))}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>

You can hide column I if you don't want to see it.
 
Upvote 0
Thank you ever ever ever so much, that has worked an absolute peach. Took me a while to twiddle the formula's around to match my sheet but my god what a godsend!!!
 
Upvote 0

Forum statistics

Threads
1,215,029
Messages
6,122,760
Members
449,095
Latest member
m_smith_solihull

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