excel - Count rows with specific property -
i have following table:

i want count each rows that: k,0,1
i tried
=and(countif(a:a;"k");countif(b:b;0);countif(c:c;1))
however gives me boolean value , not count?
i appreciate suggestions!
countifs extends usefulness of countif function allowing specify 2 127 criteria rather 1 in countif.
countifs(a:a;"k";b:b;0;c:c;1) should work fine. , solution stated simoco via comment.
let me know, if works.
Comments
Post a Comment