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

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
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,215,477
Messages
6,125,036
Members
449,205
Latest member
Eggy66

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