Sumifs Question

Sooner4Life

New Member
Joined
Mar 12, 2014
Messages
15
This is probably a simple fix but I cannot figure it out..

=SUMIFS(U3:U41,AH3:AH41,""=FALSE,AI3:AI41,""=FALSE)

I'm needing the sum of U3:U41 unless AH3:AH41 and AI3:AI41 are both True. Right now if one is true and the other is not that line is not counted. Hopefully that makes sense.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
One way:

Excel Formula:
=SUMPRODUCT(U3:U41,1-(AH3:AH41*AI3:AI41))

If you want to stick with SUMIFS, then maybe:

Excel Formula:
=SUM(U3:U41)-SUMIFS(U3:U41,AH3:AH41,TRUE,AI3:AI41,TRUE)
 
Upvote 0
Solution

Forum statistics

Threads
1,214,833
Messages
6,121,865
Members
449,052
Latest member
Fuddy_Duddy

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