sumif, countif, sumproduct?????

M

m fleming

Hello,

I have two columns: Col C, yes, yes, no, yes, yes and Col D, yes, no, yes,
yes, Yes. I want to count on col D if it says yes and the coresonding cell
in Col C says yes. Thus I would like a formula to return a count of 3 for
this example.
 
N

nevi

{=SUM(IF((C1:C100="yes"),IF(D1:D100="yes",1,0)))}

You would obviously substitute the C1:C100 and D1:D100 with the rang
you need.

This is not case sensativ
 
J

JMB

You could leave out the IF statements (either way works, but with more
complex formulae you could have problems w/the 7 nested function limit using
IF statements).

{=SUM((F4:F7="yes")*(G4:G7="yes"))}

or
=SUMPRODUCT(--(F4:F7="yes"), --(G4:G7="yes"))
 
Top