Forum Discussion
Reza Dashti
Sep 25, 2020Copper Contributor
IF function
Hi i use COUNTIF + AND functions to count the number of some courses. i want to count course and status at the same time. i mean count the number of LANUGUAGE when STATUS is yes. for example there ...
- Sep 25, 2020
Reza Dashti That could be:
=SUMPRODUCT(--(C2:C5="language")*--(F2:F5="yes"))or
=COUNTA(FILTER(C2:C5,(C2:C5="language")*(F2:F5="yes")))in case you are a MS365 subscriber.
SergeiBaklan
Sep 25, 2020Diamond Contributor
That's COUNTIFS() which allows to use several AND conditions
Reza Dashti
Sep 25, 2020Copper Contributor
Hi Sergei
thanks for your help, but it still does not work with COUNTIFS function. i have attached an image. if you look at cell J2 it still returns zero.
- SergeiBaklanSep 25, 2020Diamond Contributor
In your sample in column D you have no one word "language", thus formula correctly returns zero. If you'd like to calculate on column C, when it returns another.
You may use formula suggested by Riny_van_Eekelen , or COUNTIFS
- Reza DashtiSep 26, 2020Copper Contributor
- SergeiBaklanSep 26, 2020Diamond Contributor
Reza Dashti , you are welcome
- Riny_van_EekelenSep 25, 2020Platinum Contributor
Reza Dashti That could be:
=SUMPRODUCT(--(C2:C5="language")*--(F2:F5="yes"))or
=COUNTA(FILTER(C2:C5,(C2:C5="language")*(F2:F5="yes")))in case you are a MS365 subscriber.
- Reza DashtiSep 26, 2020Copper Contributor