Index Match with multiple criteria not using arrays

benwork

Board Regular
Joined
Oct 8, 2010
Messages
69
Hi all

Im using the index match feature with multiple criteria to get a returned value, but its slowed the sheet to a crawl.

Any other ideas to return the text value? Im not great at VB

I should mention its a shared document and I think arrays have issues with it being shared?

{=INDEX('CB'!E:E,MATCH(1,(Summary!C2='CB'!C:C)*(Summary!C1='CB'!B:B)*(Summary!C3='CB'!D:D),0))}

Thanks in advanced

Ben
 
Last edited:

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi Ben,

It's always better to try and add an exception to the formula so that it reduces the rows that it looks at instead of whole columns...
 
Upvote 0
Sorry for the very late reply, the project got bumped from the priority list.

Forgive my ignorance, what do you mean by add an exception to the formula, can you pls give an example?

Thanks

Ben
 
Upvote 0
How about
=INDEX('CB'!E:E,MATCH(C2&"|"&C1&"|"&C3,index('CB'!C:C&"|"&'CB'!B:B&"|"&'CB'!D:D,0),0))

Although I would recommend not using whole column references, as that will always slow things down.
 
Upvote 0

Forum statistics

Threads
1,214,540
Messages
6,120,107
Members
448,945
Latest member
Vmanchoppy

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