Index Match (Small?) with multiple criteria

kazbear

New Member
Joined
Dec 16, 2002
Messages
42
Office Version
  1. 365
Platform
  1. Windows
Hello.

I trying to get results from a report I run, and I a, attempting to match a couple criteria.

The report will have more than one row that will match the first criteria. Then, from those, one will match the second. Then I can get the value I'm looking for.

Im using Index/Match for some other formulas, but I think the part that complicating this one is the multiple matches (rows). I have used SMALL before, but I cant quite figure out how to put it all together. Any help is appreciated.

This is what I have so far:
=INDEX(Report!$A$2:$O$132,MATCH(1,(Display!$B4,Report!$A$2:$A$132)*(Display!E$3,Report!$K$2:$K$132),13))

I know I may need to enter as an Array, though would not mind avoiding that...
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Try
=INDEX(Data!$D$2:$D$132,AGGREGATE(15,6,(ROW(Data!$D$2:$D$132)-ROW(Data!$D$2)+1)/(($C8=Data!$E$2:$E$132)*("Blue"=Data!$I$2:$I$132)),1))
I would advise against you whole column references in array formulae.
 
Upvote 0
Thank you, but for future reference why is it a bad idea just to use C:C for example when using arrays? Many, many thanks
 
Upvote 0
Because Xl has to look at every cell in each of those columns, that's 1,048,576 times 3 so in excess of 3 million cells every time it calculates, which can slow down your workbook massively.
 
Upvote 0

Forum statistics

Threads
1,223,952
Messages
6,175,594
Members
452,656
Latest member
earth

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