Index,Match VLOOKUP Question

jajones4043

New Member
Joined
Oct 22, 2015
Messages
3
Here is my data...
ABCDE
Indiv Avg Rating123
12.001.00%1.00%1.00%
22.251.18%1.25%1.30%
32.501.36%1.49%1.60%
42.751.55%1.74%1.90%
53.001.73%1.98%2.20%

<tbody>
</tbody>

Cell a10=2.8 (Rating) And Cell A11=2 (Tier Level 1, 2 or 3)

I need to create formula in cell E1 that will pull corresponding value from my chart. In this case with a rating of 2.8 and a Tier level of 2 I would want it to pull 1.74% because 2.8 is less than the next rating level of 3.00 in Column A. If rating was 3.00 in cell a10 I would want it to pull 1.98% and so on. I'm sure this can be accomplished by Vlookup, INdex and maybe match but is that the easiest way and if so what would it be?
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
This outta do it:

E1: =INDEX($B$2:$D$6,MATCH(A10,$A$2:$A$6,1),MATCH(A11,$B$1:$D$1,0))

Your data is skewed: for this formula, 1.74% resides in cell C5
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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