ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   New Users to Excel (https://www.excelbanter.com/new-users-excel/)
-   -   COUNTIF coll A has x and Coll B has y (https://www.excelbanter.com/new-users-excel/211101-countif-coll-has-x-coll-b-has-y.html)

JimD

COUNTIF coll A has x and Coll B has y
 
I can use the countif to check for coll. A having "x" =COUNTIF( A:A,"x") I
get 3. but I need to count how many rows also have "Y" in B
A B
x y
z y
x y
x k

in this case, I should get a answer of 2. Any suggestions?

JE McGimpsey

COUNTIF coll A has x and Coll B has y
 
One way:

=SUMPRODUCT(--(A1:A100="x"),--(B1:B100="y"))


If you're using XL07 or XL08:

=COUNTIFS(A:A,"x",B:B,"y")

In article ,
jimd wrote:

I can use the countif to check for coll. A having "x" =COUNTIF( A:A,"x") I
get 3. but I need to count how many rows also have "Y" in B
A B
x y
z y
x y
x k

in this case, I should get a answer of 2. Any suggestions?


JimD

COUNTIF coll A has x and Coll B has y
 
Thanks, that worked as long as I didn't use A:A, A1:A100 works. must be the
range is too big.

"JE McGimpsey" wrote:

One way:

=SUMPRODUCT(--(A1:A100="x"),--(B1:B100="y"))


If you're using XL07 or XL08:

=COUNTIFS(A:A,"x",B:B,"y")

In article ,
jimd wrote:

I can use the countif to check for coll. A having "x" =COUNTIF( A:A,"x") I
get 3. but I need to count how many rows also have "Y" in B
A B
x y
z y
x y
x k

in this case, I should get a answer of 2. Any suggestions?



JE McGimpsey

COUNTIF coll A has x and Coll B has y
 
Prior to XL07/08, SUMPRODUCT, like all other Array formulae (though you
don't need to use CTRL-SHIFT-ENTER), cannot be used on entire colums.

In article ,
jimd wrote:

Thanks, that worked as long as I didn't use A:A, A1:A100 works. must be the
range is too big.


Shane Devenshire[_2_]

COUNTIF coll A has x and Coll B has y
 
Hi,

Just change the reference to read either A2:A65536 or A1:A65535. Just one
cell less than the entire column.

Or you can use the cludgy trick:
=SUMPRODUCT(--(A1:A65535=1))+SUMPRODUCT(--(A65536=1))

If this helps, please click the Yes button

Cheers,
Shane Devenshire

"jimd" wrote:

Thanks, that worked as long as I didn't use A:A, A1:A100 works. must be the
range is too big.

"JE McGimpsey" wrote:

One way:

=SUMPRODUCT(--(A1:A100="x"),--(B1:B100="y"))


If you're using XL07 or XL08:

=COUNTIFS(A:A,"x",B:B,"y")

In article ,
jimd wrote:

I can use the countif to check for coll. A having "x" =COUNTIF( A:A,"x") I
get 3. but I need to count how many rows also have "Y" in B
A B
x y
z y
x y
x k

in this case, I should get a answer of 2. Any suggestions?




All times are GMT +1. The time now is 09:31 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com