Using COUNTIF and OR

J

Janie

I know COUNTIF isn't the right function because I know it cannot use logic
operators. Here's what I am trying to accomplish:

Col A Col B
A 5
B 6
C 3
A 3
A
B 7

The question is, how many numbers in Column B correspond to EITHER A or C?

Recommendations?
 
E

Elkar

See if this works for you:

=SUMPRODUCT((A1:A6="A")+(A1:A6="C"),--(ISNUMBER(B1:B6)))

HTH
Elkar
 
F

Fred Smith

I depends on what you mean by "correspond to". Regardless, an "or" condition
involves simple addition. Try:

To count the occurrences:
=countif(a:a,"A")+countif(a:a,"C")

To sum column B if:
=sumif(a:a,"A",b:b)+sumif(a:a,"C",b:b)

Regards,
Fred.
 
D

Don Guillett

try this after changing columns to suit
=SUMPRODUCT((H2:H22={"a","b"})*(I2:I22>0))
 
B

Bob Phillips

=SUM(SUMIF(A1:A10,{"A","B"},B1:B9))

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top