Countif

Max

New Member
Joined
Apr 22, 2002
Messages
1
I am trying to count the number of values in one column based on a second criteria in a second column. In this case I want to count all "A"s in column B for which there is an "x" in column D.
Any help would be very appreciated.
Thanks!
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
{=SUM((B1:B10="A")*(D1:D10="X"))}

Note: This is an array formula which must be entered using the Control+Shift+Enter key combination. For more on array formulas see the Excel Help Index topic of "About array formulas and how to enter them".
 
Upvote 0
On 2002-04-23 09:30, Max wrote:
I am trying to count the number of values in one column based on a second criteria in a second column. In this case I want to count all "A"s in column B for which there is an "x" in column D.
Any help would be very appreciated.
Thanks!

=SUMPRODUCT((B2:B100="A")*(D2:D100="x"))

You can also use cell refs instead of "A" and "x" if you have them in cells of their own.
 
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,764
Members
448,991
Latest member
Hanakoro

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