SUM with COUNTIF or not?

ivanbas

New Member
Joined
Dec 4, 2018
Messages
5
Hello guys, I am struggling for hours with this and can't get it right, plase help :(

If supplier is from one country, China, I need to sum all amount from column M. If it is not, I need to write that there was no supply outside Europe.

=SUMIF(D2:D10,"China",M2:M10)

With this function I managed to get correct quantity, but if I add this:

=SUMIF(D2:D10,"China",M2:M10, ''no import outside EU'')

I get an error. My logic must be wrong then, should I use COUNTIF first and then SUM maybe?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Code:
=IF(SUMIF(D2:D10,"China",M2:M20)=0,"no import outside EU",SUMIF(D2:D10,"China",M2:M20))

The problem is your syntax. SUMIF() doesn't allow for a Boolean argument for when its sum is zero.
 
Last edited:
Upvote 0
Hi,

A few different ways you can write the formula, here's 2:


Cell Formulas
RangeFormula
J1=IF(SUMIF(D2:D10,"China",M2:M10),SUMIF(D2:D10,"China",M2:M10),"no import outside EU")
J2=IFERROR(1/(1/SUMIF(D2:D10,"China",M2:M10)),"no import outside EU")
 
Upvote 0
Hi guys, thank you for your help, but something is still wrong because even with your formulas I get "no import outside EU" although I have China in my D column and it is clear that it should sum M column instead of displaying "no import outside EU". Any further ideas?
 
Upvote 0
If, According to your OP, your Original formula of:

=SUMIF(D2:D10,"China",M2:M10)

In Fact gives you the correct result...

With this function I managed to get correct quantity,

Then there's No reason any of the above suggested formulas will fail...
 
Last edited:
Upvote 0
If, According to your OP, your Original formula of:

=SUMIF(D2:D10,"China",M2:M10)

In Fact gives you the correct result...



Then there's No reason any of the above suggested formulas will fail...

Now this formula returns 0, I am totally confused now and I have no idea what happened and what I did... in column D I have names of countries and in column M I have amounts, it should sum everything from column M because there is China in column D and display message that there is no import outside EU in case there is no China. Sounded simple to me, but I don't know what is wrong here :(
 
Upvote 0
Are you Actually trying to SUM cells for column M, if corresponding cells in column D contains "China" (with No other Text)?

If so, perhaps Test the cells, in any Unused cells, enter:

=D2="China"

=ISNUMBER(M2)

What results do you get?
 
Last edited:
Upvote 0
After rethinking, I finally did it

=IF(COUNTIF(D2:D10,"China")>=1,SUM(M2:M10),"no import outside EU")

Thanks for your help guys :)
 
Upvote 0
After rethinking, I finally did it

=IF(COUNTIF(D2:D10,"China")>=1,SUM(M2:M10),"no import outside EU")

Thanks for your help guys :)

This is Totally different than your Original SUMIF.

This will SUM the Entire Range M2:M10 if ANY cell within D2:D10 is "China"

But if that's what you're actually after, then you don't really need >=1 (doesn't hurt, but not needed):

=IF(COUNTIF(D2:D10,"China"),SUM(M2:M10),"no import outside EU")
 
Last edited:
Upvote 0
This is Totally different than your Original SUMIF.

This will SUM the Entire Range M2:M10 if ANY cell within D2:D10 is "China"

But if that's what you're actually after, then you don't really need >=1 (doesn't hurt, but not needed):

=IF(COUNTIF(D2:D10,"China"),SUM(M2:M10),"no import outside EU")

Thanks a lot, I didn't know that :)
 
Upvote 0

Forum statistics

Threads
1,216,099
Messages
6,128,822
Members
449,469
Latest member
Kingwi11y

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