Index Match with multiple ranges and criteria issue

petrutms

New Member
Joined
Mar 1, 2021
Messages
3
Office Version
  1. 2019
Platform
  1. Windows
  2. MacOS
  3. Mobile
  4. Web
Hi there,
I have an issue with a formula, spent hours trying to make it work.
I have this formula working fine: =IF(IFERROR(INDEX(Home!$F$3:$F$14,MATCH([@TIP],Home!$G$3:$G$14,0)),FALSE),"No","Yes")
And i want to add this new range to it: (Home!$I$3:IF$17,MATCH([@DAS],Home!$J$3:$J$17,0)),FALSE)
The result should give YES or NO, based on afy of those 2 ranages and criteria...

Thank you for help!
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Welcome to the forum!

I appears your formula just says "Yes" if the value is not found, and "No, if it is found. If that's true, you can do without the INDEX part, and just go with something like this:

Excel Formula:
=IF(COUNTIF(Home!$G$3:$G$14,[@TIP])+COUNTIF(Home!$J$3:$J$14,[@DAS]),"No","Yes")

If not, please explain in words what you're trying to achieve.
 
Upvote 0
Hi, thanks for your reply. It doesnt work in this form. Please see the structure in image.
The formula should work like this:
If i check any cell from F or I columns, return NO in the corresponding filed from other sheet. Return YES if the cell is not checked.
I use this to filter some data in other sheet, the yes/no will populate a column in other sheet.
As i said this formula works fine with just in filter, i want to add other filter!
Excel Formula:
=IF(IFERROR(INDEX[B](Home!$F$3:$F$14,MATCH([@TIP],Home!$G$3:$G$14,0)),FALSE)[/B],"No","Yes")
 

Attachments

  • Capture.PNG
    Capture.PNG
    12.8 KB · Views: 8
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

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