IndexMatch multiple function ignore 0

Mandy_84

Board Regular
Joined
May 29, 2017
Messages
71
Hi All,
Need a help in following. In the cell "BLANK" I have entered the formula Index Match (=INDEX(J7:N9,MATCH(A2,I7:I9,0),MATCH(B2,I3:J3,0)) to find the amount of French Language at B2 level, however when I look in the table it doesn't show the amount. What I need is to find an exact amount ignoring "0". Also, keep in mind that A2,B2 can changed, also while changing J3. the table (J7:N9) is changing accordingly. Hope I made it understandable ))))
ABCDEFGHIJKLMN
1BLANK
2FrenchB2
3LevelB2
4
5
6A2B2B2C1C2
7French0020000
8Spanish0030000
9German0020000

<tbody>
</tbody>
Thanks a million times!
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Provided the example is representative and the countries in the countries column are always unique this should work:

=SUMIFS(INDEX(J7:N9,MATCH(A2,I7:I9,0),0),J6:N6,B2)
 
Upvote 0
Thanks, but i need that formula recognizes, in case I change the level to C2 or change the language from French to German for example. so I will not have French B2. instead German C2
 
Upvote 0
FALSE?? What is the formula you used? That formula cant produce false under normal circumstances. The only way i can think of is formatting of the cell its housed in.
 
Upvote 0
Aha,nope,sorry, should be B1 and B2. Will try to fix this

Row\Col
A​
B​
C​
I​
J​
K​
L​
M​
N​
1​
2​
French B2 200
3​
4​
5​
6​
A2 B1 B2 C1 C2
7​
French 0 0 200 0 0
8​
Spanish 0 0 300 0 0
9​
German 0 0 200 0 0
10​

In C2 enter:

=VLOOKUP(A2,$I$6:$N$9,MATCH(B2,INDEX($I$6:$N$9,1,0),0),0)
 
Upvote 0

Forum statistics

Threads
1,216,156
Messages
6,129,192
Members
449,492
Latest member
steveg127

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