Forum Discussion
Karolis D
Feb 26, 2018Copper Contributor
COUNTIFS function
Hello,
I need to count cells with any number on it in column A, but there is few criteria, I need to count only theese numbers which has in the same row but in column F text "saus" and in the c...
- Feb 26, 2018
When better SUMPRODUCT
=SUMPRODUCT(ISNUMBER(Pivot_18!$A:$A)*(Pivot_18!$F:$F = "saus")* ISNUMBER(SEARCH("italija",Pivot_18!$E:$E)))
Karolis D
Feb 26, 2018Copper Contributor
sorry, it had to be COUNTIFS(Pivot_18!$A:$A, "*" , Pivot_18!$F:$F, "saus", Pivot_18!$E:$E, "*italija*")
SergeiBaklan
Feb 26, 2018Diamond Contributor
If you have no criteria for column A when
=COUNTIFS(Pivot_18!$F:$F, "saus", Pivot_18!$E:$E, "*italija*")
- Karolis DFeb 26, 2018Copper Contributoracually I have, it should be counted if there is any number on it.
- SergeiBaklanFeb 26, 2018Diamond Contributor
When better SUMPRODUCT
=SUMPRODUCT(ISNUMBER(Pivot_18!$A:$A)*(Pivot_18!$F:$F = "saus")* ISNUMBER(SEARCH("italija",Pivot_18!$E:$E)))
- Karolis DFeb 26, 2018Copper Contributorthank you, works perfect!