Combined Index Match

matty_lou82

New Member
Joined
Sep 14, 2018
Messages
38
Hi,

I have a table of data that I need to look up data from based on 2 lookups, the first vertically and the second horizontally. The lookup will be based on 2 dropdown lists based on the values within these sections. So rather than using a standard Index_Match, I need some kind of blended Index_Match insread where I can lookup a specific value based on 2 dropdoens, rather than just 1.

Here is a picture, the 2 dropdowns are the sections in Orange:

1594893412828.png
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
It's still a standard INDEX and MATCH formula, assuming that the dropdowns are fed from the row and column headings an error trap should not be needed

=INDEX($C$7:$G$11,MATCH($B$2,$B$7:$B$11,0),MATCH($C$3,$C$6:$G$6,0))
 
Upvote 0
It's still a standard INDEX and MATCH formula, assuming that the dropdowns are fed from the row and column headings an error trap should not be needed

=INDEX($C$7:$G$11,MATCH($B$2,$B$7:$B$11,0),MATCH($C$3,$C$6:$G$6,0))

Hi Jason, thank you so much for getting back to me :)

I have tried the formula and unfortunately it doesn't appear to work. To confirm, both the dropdowns are taken from the row and column headings, using validation lists.

1594894422445.png


Thank you again,

Matt
 
Upvote 0
Just a typo I think Jason:
=INDEX($C$7:$G$11,MATCH($B$2,$B$7:$B$11,0),MATCH($C$2,$C$6:$G$6,0))
 
Upvote 0
Hey Matt

Kindly try this
=INDEX($B$6:$F$10,MATCH($B$2,$B$6:$B$10),MATCH($C$2,$B$6:$F$6))

This is assuming your data row ends at B10 and data column ends at F6

Hope this Helps
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,583
Members
449,089
Latest member
Motoracer88

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