Match 2 Criteria on multiple sheet and return a value

Yvonne Ng

Board Regular
Joined
Nov 5, 2013
Messages
67
I have data sheet namely Sept, Oct.
I want to create a summary page to see how much I've been bill on that particular invoice.
I try used index and match function for multiple sheet, but not successful.

Please illustrate and advise.
Attached file for reference.
 

Attachments

  • Oct.PNG
    Oct.PNG
    30.9 KB · Views: 3
  • Sept.PNG
    Sept.PNG
    25.6 KB · Views: 3
  • Summary.PNG
    Summary.PNG
    36.8 KB · Views: 3
=IFNA(INDEX(Sept!$C$2:$C$4,MATCH(A2&B2,Sept!$A$2:$A$4&Sept!$B$2:$B$4,0)),0)
Its work for the data search for sept, but i try add for oct , the formular :
=IFNA(INDEX(Sept!$C$2:$C$4,MATCH(A3&B3,Sept!$A$2:$A$4&Sept!$B$2:$B$4,0))+INDEX(Oct!$C$2:$C$4,MATCH(A3&B3,Oct!$A$2:$A$4&Oct!$B$2:$B$4,0)),0)
Giving me A '0'. how should i corrrect the formula for the other months?
You're missing IFNA for Oct
 
Upvote 0

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
You're missing IFNA for Oct
=IFNA(INDEX(Sept!$C$2:$C$4,MATCH(A4&B4,Sept!$A$2:$A$4&Sept!$B$2:$B$4,0)),0)+IFNA(INDEX(Oct!$C$2:$C$4,MATCH(A4&B4,Oct!$A$2:$A$4&Oct!$B$2:$B$4,0)),0)+IFNA(INDEX(Nov!$C$2:$C$4,MATCH(A4&B4,Nov!$A$2:$A$4&Nov!$B$2:$B$4,0)),0)

i guest i got it...
just that to confirm I have to use a "+" for every month formula to add on ya?


1696835468275.png
 
Upvote 0
=IFNA(INDEX(Sept!$C$2:$C$4,MATCH(A4&B4,Sept!$A$2:$A$4&Sept!$B$2:$B$4,0)),0)+IFNA(INDEX(Oct!$C$2:$C$4,MATCH(A4&B4,Oct!$A$2:$A$4&Oct!$B$2:$B$4,0)),0)+IFNA(INDEX(Nov!$C$2:$C$4,MATCH(A4&B4,Nov!$A$2:$A$4&Nov!$B$2:$B$4,0)),0)

i guest i got it...
just that to confirm I have to use a "+" for every month formula to add on ya?


View attachment 99973
Yes.
 
Upvote 0

Forum statistics

Threads
1,215,148
Messages
6,123,301
Members
449,095
Latest member
Chestertim

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