Index Match Issue

BWMagee

Board Regular
Joined
Feb 18, 2014
Messages
112
Hi all, I'm using two Index Match formulas in adjacent cells. They are slightly different as I want them to return a value from different ranges, but they are written in exactly the same manner, yet one works and one doesn't.

This works:

<style type="text/css">p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Grande'; color: #000000}span.s1 {color: #006107}span.s2 {color: #0057d6}span.s3 {color: #ab30d6}span.s4 {color: #a54a29}span.s5 {color: #33af4a}span.s6 {color: #ff9c1b}span.s7 {color: #fe4fdd}</style>{=(IF($E86=$N$82,INDEX($N$131:$N$454,MATCH(1,($C86=$C$131:$C$454)*($D86=$D$131:$D$454),0)),0)}

This doesn't (it returns 0, as per the "value_if_false" number at the end):

<style type="text/css">p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Grande'; color: #000000}span.s1 {color: #0057d6}span.s2 {color: #006107}span.s3 {color: #ab30d6}span.s4 {color: #a54a29}span.s5 {color: #33af4a}span.s6 {color: #ff9c1b}span.s7 {color: #fe4fdd}</style>
{=IF($E$131:$E$454=$P$82,INDEX($P$83:$P$120,MATCH(1,($C86=$C$131:$C$454)*($D86=$D$131:$D$454),0)),0)}

There are three differences that I can see:
1) The IF function in example two looks in a range, as opposed to the exact cell of example one.
2) The IF function references cell N82, as opposed to P82.
2) The INDEX range is different.

These are all on purpose. The range P83-P120 does contain some #DIV/0! cells, so I enclosed example two with an IFERROR function to see if that would help, but it returned the same value 0, so it had no effect.

{=IFERROR(IF($E$131:$E$454=$P$82,INDEX($P$83:$P$120,MATCH(1,($C86=$C$131:$C$454)*($D86=$D$131:$D$454),0)),0),0)

The only other thing I can think of is that INDEX MATCH might not like the differing ranges in example two. (ie. 83:120 not being the same size as the others 131:454). So I experimented changing the range, but it had no effect, still returning the same sorry 0.

<style type="text/css">p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Grande'; color: #000000}span.s1 {color: #006107}span.s2 {color: #0057d6}span.s3 {color: #ab30d6}span.s4 {color: #a54a29}span.s5 {color: #33af4a}span.s6 {color: #ff9c1b}span.s7 {color: #fe4fdd}</style>
=IFERROR(IF($E$131:$E$454=$P$82,INDEX($P$131:$P$454,MATCH(1,($C86=$C$131:$C$454)*($D86=$D$131:$D$454),0)),0),0)

So I'm at a loss as to why the first one works but the second doesn't. Any ideas are much appreciated.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
You have a proper muddle here. Ignore the formulas. What are trying to do? Why isnt the $E$131:$E$454=$P$82 within the match formula? The index range length cant be different from the match range length. It makes no sense to do that as any match past the first 40 or so cells would result in a reference error.
 
Upvote 0
You have a proper muddle here. Ignore the formulas. What are trying to do? Why isnt the $E$131:$E$454=$P$82 within the match formula? The index range length cant be different from the match range length. It makes no sense to do that as any match past the first 40 or so cells would result in a reference error.

Thanks for the reply.


CDEP
6=Formula
82T6B4
86HomeOffice35
310HomeOfficeB4
454YardHotel

<tbody>
</tbody>

Result should be P86 ("35")
Criteria:
If E310 ("B4") = P82 ("B4")
If D82 ("Office") = D310 ("Office")
If C82 ("Home") = C310 ("Home")

The reason I included an IF statement outside the INDEX MATCH is
a) It worked. In the first example at least.
b) I am actually combining multiple index matches in one formula. Eg. IF(INDEX(MATCH....,IF(INDEX(MATCH.... Using the IF statement allows me to structure it so that IF, INDEX MATCH = True, return the cell eg. P86. IF INDEX MATCH = False, then the next IF(INDEX(MATCH.... and the last one of these ends in a 0. Meaning if they are all false, return 0. This is what is currently happening. I'm getting the 0 (in the second example, but not the first, which works).
 
Last edited:
Upvote 0
Note that "B4" (In column E) won't necessarily be in E310. It could be anywhere from E131:E454.
The second row of "Home" and "Office" (row 310) could appear anywhere from C&D131:454
The first row of "Home" and "Office" (row 86) could appear anywhere from C&D83:120
The result "35" could be anywhere from P83:P120. And its important not to set a range lower than that is there is data down there I definitely don't want included.
The "B4" (In column P) will always be at P82.
 
Last edited:
Upvote 0
It's OK, I have found a solution by shifting data around.

<style type="text/css">p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Lucida Grande'; color: #000000}span.s1 {color: #0057d6}span.s2 {color: #006107}span.s3 {color: #ab30d6}span.s4 {color: #a54a29}span.s5 {color: #33af4a}span.s6 {color: #ff9c1b}span.s7 {color: #fe4fdd}</style>IF($P$82=$E6,INDEX($P$83:$P$120,MATCH(1,($C6=$C$83:$C$120)*($D6=$D$83:$D$120),0)))

They key seems to be making the INDEX and MATCH ranges the same, as you say, and making P82 = a single cell, rather than a range of cells.
 
Upvote 0

Forum statistics

Threads
1,215,639
Messages
6,125,971
Members
449,276
Latest member
surendra75

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