SUMIFS With Multiple Criteria

kumara_faith

Well-known Member
Joined
Aug 19, 2006
Messages
923
Office Version
  1. 365
Hi,

I have the following tables:

Book3
CDEFGHIJKLMNOPQ
2Table 1Table 2Table 3
3DateMonthStaffBranchSalesMonthStaffBranchSalesMonthStaffBranchSales
41/1/2022JanAlexEngland10JanuaryAlexEngland0JanuaryAlexEngland15
51/1/2022JanJoeNorth America0
61/1/2022JanAlexEngland5
71/1/2022JanMinaSingapore10
Sheet1
Cell Formulas
RangeFormula
L4L4=SUMIFS(G4:G7,D4:D7,I4,E4:E7,J4,F4:F7,K4)


I have my data table in Table 1 and summary in table 2.

I am trying to summarize the sales for Alex for the month of January using a SUMIFS but it is not showing the correct result. The correct result is in Table 3. Appreciate any help. Thanks
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Try this:

=SUMIFS(G4:G7,D4:D7,RIGHT(I4,3),E4:E7,J4,F4:F7,K4)
 
Upvote 0
Sumifs.xlsm
IJKL
1
2Table 2
3MonthStaffBranchSales
4JanAlexEngland15
Sheet2
Cell Formulas
RangeFormula
L4L4=SUMIFS(G4:G7,D4:D7,I4,E4:E7,J4,F4:F7,K4)


Column D has Jan

or =SUMIFS(G4:G7,D4:D7,LEFT(I4,3),E4:E7,J4,F4:F7,K4)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,519
Messages
6,125,297
Members
449,218
Latest member
Excel Master

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