countif w/ 2 conditions

  • Thread starter Thread starter Ragdyer
  • Start date Start date
R

Ragdyer

Not exactly, but you could use 2 of them, and add them together.

=COUNTIF(A1:A100,"A")+COUNTIF(A1:A100,"B")
 
this would sum rngB
=sumproduct((rngA={"joe","bill"})*(rngb))
to count
=sumproduct((rngA={"joe","bill"})*1)



--
Don Guillett
SalesAid Software
(e-mail address removed)
Don Guillett said:
try
=sumproduct((rngA={"joe","bill"})*(rngb))
 
Back
Top