INDEX MATCH not displaying results

stefanp

New Member
Joined
May 24, 2012
Messages
10
My workbook with multiple INDEX/METCH array functions has stoped displaying results. The formulas look like:
{=IFERROR(INDEX(Cou,MATCH(1,(Nat=$C81)*(shop=$D$2),0),1),"")}
I also tried with:
{=IFERROR(INDEX(Cou,MATCH($C81,Nat,0),MATCH($D$2,shop,0)),"")}
where Cou, Nat and shop are names of data ranges

Anyone can help?
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
If either Nat=$C81 or shop=$D$2 is untrue the match function generates and error. When that happens you have the code set up to output "". I'd use formula audit on one of the cells that I was expecting output in and see which one is false.
 
Upvote 0
My workbook with multiple INDEX/METCH array functions has stoped displaying results. The formulas look like:
{=IFERROR(INDEX(Cou,MATCH(1,(Nat=$C81)*(shop=$D$2),0),1),"")}
I also tried with:
{=IFERROR(INDEX(Cou,MATCH($C81,Nat,0),MATCH($D$2,shop,0)),"")}
where Cou, Nat and shop are names of data ranges

Anyone can help?

These formulas implicate different layouts, so they can't be compared without knowing the layout.

What does the following return?

{=INDEX(Cou,MATCH(1,(Nat=$C81)*(shop=$D$2),0),1)}</SPAN>
 
Upvote 0
Uhhhh looking closer I don't see any way for that code to generate any output. Maybe I'm missing something though. Looks like if there is an error it generates null otherwise it generates nothing
 
Upvote 0
Thanks guys
I've since solved the mystery. It was the formatting of the cells that i somehow changed. It works now wit the original function:
{=INDEX(Cou,MATCH(1,(Nat=$C81)*(shop=$D$2),0),1)}
It returns a lookup by 2 parameters
 
Upvote 0

Forum statistics

Threads
1,214,988
Messages
6,122,620
Members
449,092
Latest member
amyap

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