Sumif - summing under conditions

nn992

New Member
Joined
Jul 28, 2016
Messages
47
Hello everyone,

I want to automatize my work with excel, but sumif function is giving me small issues. I provided a screenshot to explain you my problem.



Can you please tell me how can I tell excel to sum all the values from "new errors" column but only if the event type is "ICH"?

You can see the formula I wrote but it doesnt work...

Thanks in advance...
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Your sum range and criteria are the wrong way round, however you also seem to have numbers stored as text... if you cannot change these to be stored as numbers then something like:

Code:
=SUMPRODUCT((C8:C415="ICH")*(D8:D415))

Should work for you.
 
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,859
Members
449,194
Latest member
HellScout

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