Excel How to count from a column if specific condition in another column is true

Joined
Apr 25, 2017
Messages
5
Reaction score
1
Hi guys!

I want to count number of T's and number of O's in column "C" (image attached) only if the value in column "AE" is "Open".
I have tried different IF conditions with COUNTIF but its not working that I tried.

Any solution guys ?

Regards,
Tahir
 

Attachments

  • to b sent.webp
    to b sent.webp
    3.6 KB · Views: 113
Welcome to the forum @Tahir M :)

As you have multiple criteria, you need to use the COUNTIFS function instead.

It works like this: =COUNTIFS(range1,critera1,range2,critera2)

So your formula might look something like this:

=COUNTIFS(C:C,"T",AE:AE,"Open")

Just replace the "T" with "O" to count the Os.
 
Back
Top