Countif

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi everyone,

I'm hoping someone can help me with another one please.

I want to do a countif with 3 criteria. If A is 456 and B is S and C is Yes.

Just can't seem to think straight today

Thanking you in advance
Cheers
 
Hi,

You can combine countif functions. In your case you can have a formula
similar to:
=countif(B2:B10,"=456") + countif(B2:B10, "S") + countif(B2:B10, "Yes")

Hope this helps,

stevefromnaki :)
 
Thank you Bernard,

I'll definitely follow the links because I've seen lots of posts where
sumproduct is given as an alternative option and I've always chickened out of
using the "more complicated option". But now I've seen it in use..........

Thanks again
 
Back
Top