Combining two variables part of SUMIF

Tima

New Member
Joined
Jul 19, 2005
Messages
4
Hello,

I have the following dataset:

Col A ---------Col B

EPAIM---------4
NAAIM---------2
EPAIM---------3
JNAIM---------2

----- = were used for example only


I can do a simple SUMIF to add up all the EPAIM, which is two. However, I would like to do a formula that would add up EPAIM, then add up certain criteria in cell B. For example, i want to add up all the EPAIM in column A, then add up only variables that have 4. So it would return there are two EPAIM and if I asked for which ones had 4 result, it would come back with 1 as an answer. So I need to have two results for EPAIM and 4, which would be two (EPAIM) and one item that has a variable of four.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Hi
Welcome to the board


Remark: you should always post your excel version. I'll assume it's xl2010.


I cannot understand your post, so I'll do a bit of guessing.

I can do a simple SUMIF to add up all the EPAIM, which is two.

???

If you add the values corresponding to EPAIM you get 4+3=7, not 2

Mybe you mean you want to count how many EPAIM entries there are using COUNTIF (and not SUMIF)? In that case you'd get the value 2, as you posted.

If that's the case then

- to get how many EPAIM entries there are:

=COUNTIF(A1:A4,"EPAIM")

- to get how many EPAIM entries there are, for which the corresponding value in column B is 4:


=COUNTIFS(A1:A4,"EPAIM",B1:B4,4)

Is this what you want?
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,603
Members
449,038
Latest member
Arbind kumar

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