Index and match help

bluefeather8989

Active Member
Joined
Nov 20, 2009
Messages
331
Office Version
  1. 365
Platform
  1. Windows
i need a formula that will find the top 9 and display the name next to it
Example:

A B
2 AA
4 BB
9 CC
9 DD
1 EE


answer would be CC
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
You could do that with VLOOKUP, try

=VLOOKUP(9, $A$1:$B$5, 2, 0)
 
Upvote 0
i need a formula that will find the top 9 and display the name next to it
Example:

A B
2 AA
4 BB
9 CC
9 DD
1 EE


answer would be CC

oops i made a mistake. it should be the other way around
Example:

A B
AA 2
BB 4
CC 9
DD 9
EE 1

sry about the mix up:biggrin:
 
Upvote 0
In that case, try...

=INDEX($A$1:$A$5, MATCH(9, $B$1:$B$5, 0))
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,729
Members
452,939
Latest member
WCrawford

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