I am running a multiple criteria INDEX+Match, and I get N/A or it goes to the last value. I have tried to reorganize the lookup array, and it didn't work. When I try the MATCH separately, it does return the right values. The problem is when I join them.
I have a list of revenue tiers and I need to know which tier a forecast falls into. Each team has different tiers. That is the other MATCH that I am trying to add to the INDEX function.
This is what I'm trying at the moment:
=MATCH(1,(B2=Sheet2!$E$4:$E$32)*(A2=Sheet2!$B$4:$B$32),0) RESULT: N/A
=MATCH(1,(B2=Sheet2!$E$4:$E$32)*(A2=Sheet2!$B$4:$B$32),1) RESULT: 29 (last value)
=MATCH(1,(B2=Sheet2!$E$4:$E$32)*(A2=Sheet2!$B$4:$B$32),-1) RESULT: N/A
I have rearranged it and it does not give me any different results, unfortunately.
I can attach a file with the data, if needed.