Sumifs OR

bennymc10

New Member
Joined
Apr 8, 2018
Messages
2
Is it possible to sumifs an argument but then sumifs a different argument if the criteria is not met with the first sumifs within the same cell?

I’m trying to get the value of a cell when the criteria in met however if the criteria is not met that will sumifs a different criteria.

Apologies if none of this makes sense!!
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
If the first SUMIF gives an error ( criteria not met) you can include another one in a IFERROR formula
 
Last edited:
Upvote 0
I’ve tried that however it doesn’t seem to work. This is my current formula

=SUMIFS(Order[[#All],[Tonnes]],Order[[#All],[W+SZ+CON+CUST+PEP]],[@[W+SZ+CON+CUST+PEP]])+SUMIFS(Order[[#All],[Tonnes]],Order[[#All],[W+CUST+PEP]],[@[W+SZ+CUST+PEP]])
 
Upvote 0
@bennymc10.... It would be easier to answer your question if you provided a concrete example of the two or more SUMIFS and/or criteria.

Generally, no, we cannot use SUMIFS to sum based on one criteria __or__ another.

Instead, we might us one of the following formulas, whichever makes more sense to you, all normally-entered (just press Enter as usual):

SUMPRODUCT(A1:A10,--((B1:B10=123) + (B1:B10=456) > 0))

SUM(SUMIFS(A1:A10,B1:B10,{123,456}))

SUMPRODUCT(A1:A10*(B1:B10={123,456}))

I prefer the first form, insofar as it is more generally applicable.

All say: sum A1:A10 where the corresponding value is B1:B10 is 123 or 456.
 
Upvote 0
@bennymc10.... It would be easier to answer your question if you provided a concrete example of the two or more SUMIFS and/or criteria.

In the interim, you did. I would suggest the following:

Code:
=SUMPRODUCT(Order[[#All],[Tonnes]],
--((Order[[#All],[W+SZ+CON+CUST+PEP]] = [@[W+SZ+CON+CUST+PEP]])
 + (Order[[#All],[W+CUST+PEP]] = [@[W+SZ+CUST+PEP]]) > 0))

PS.... I wonder if [W+CUST+PEP] [sic] should be [W+SZ+CUST+PEP].
 
Last edited:
Upvote 0
After-thought....
This is my current formula
Code:
=SUMIFS(Order[[#All],[Tonnes]],Order[[#All],[W+SZ+CON+CUST+PEP]],[@[W+SZ+CON+CUST+PEP]])+SUMIFS(Order[[#All],[Tonnes]],Order[[#All],[W+CUST+PEP]],[@[W+SZ+CUST+PEP]])

In what way does that formula not work?

Do you get a syntax error?

Or do you get an unexpected result?

If the latter, is it because your formula is double-accounting when both conditions are true in the same row?

The SUMPRODUCT formula that I suggested should correct for double-accounting.

And my PS might address a syntax error or unexpected result because: I wonder if [W+CUST+PEP] [sic] should be [W+SZ+CUST+PEP].

If neither solves your problem, you might need to explain the problem better (more specifically). And we might need to see a concrete example.

To "post" a concrete example, I think it is best if you upload an example Excel file (redacted) that demonstrates the problem to a file-sharing website (e.g. box.net/files), and post the public/share URL in a response here. Test the download URL first, being careful to log out of the file-sharing website first. (If you use box.net/files, ignore any preview errors, and just download.)

Some people object to that because they cannot or will not download files. But posting tables of values and formulas might be tedious and insufficient. Sometimes, the devil is in the details.
 
Last edited:
Upvote 0
@joeu2004
The use of SUMPRODUCt gives certainly a better understanding that SUMIFS
For the first one I would have use
=SUMPRODUCT(A1:A10;-- ( ( (B1:B10=123) + (B1:B10=456) )>0 ) )
No ?
@bennymc10
Yes please send us more detailed example
 
Last edited:
Upvote 0
I would have use
=SUMPRODUCT(A1:A10;-- ( ( (B1:B10=123) + (B1:B10=456) )>0 ) )
No ?

Or how about:

=SUMPRODUCT(A1:A10;--( ( ( ( (B1:B10=123) + (B1:B10=456) ) ) ) > 0 ) )

;) ;) ;)

The point is: they are equivalent. All of the colored parentheses are redundant.

I choose to write IF(A1+B1 > 0) because it is sufficient, given operator precedence.

Some people prefer to write IF( (A1+B1) > 0 ) either because they do not understand operator precedence or because they prefer to do things one way, given that parentheses are sometimes necessary to override operator precedence.

It is a matter of personal taste.
 
Upvote 0
I’ve tried that however it doesn’t seem to work. This is my current formula

=SUMIFS(Order[[#All],[Tonnes]],Order[[#All],[W+SZ+CON+CUST+PEP]],[@[W+SZ+CON+CUST+PEP]])+SUMIFS(Order[[#All],[Tonnes]],Order[[#All],[W+CUST+PEP]],[@[W+SZ+CUST+PEP]])

Care to post a part (the upper part) of your table?
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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