SumIFS tweak

Memar

Board Regular
Joined
Sep 2, 2011
Messages
76
I have a formula using SUMIFS function to get a total sales amount based on three criteria from a different master workbook. It works only when the master workbook is open otherwise it gives me an error "#VALUE". Is there any tweak to make this formula works even if the master workbook is not opened every time I open the workbook which has this formula.

Formula Used - [FONT=&quot]=SUMIFS('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$L$2:$L$60000,'C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$B$2:$B$60000,$A$3,'C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$A$2:$A$60000,$E$4,'C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$W$2:$W$60000,$CI5)

Thanks for your time and help[/FONT]
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
will using a SUMPRODUCT help you?. SUMIFS is a TRUE statement apparently and requires source workbook to be open.
 
Last edited:
Upvote 0
Either, control+shift+enter, not just enter...

=SUM(IF(('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$B$2:$B$60000=$A$3)*('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$A$2:$A$60000=$E$4)*('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$W$2:$W$60000=$CI5),'C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$L$2:$L$60000))

Or, just enter...

=SUMPRODUCT('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$L$2:$L$60000,--('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$B$2:$B$60000=$A$3),--('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$A$2:$A$60000=$E$4),--('C:\Users\MMM\Desktop\Test 1\[MMM2.xlsx]Sheet1'!$W$2:$W$60000=$CI5))
 
Upvote 0

Forum statistics

Threads
1,216,196
Messages
6,129,462
Members
449,511
Latest member
OttosArmy

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