excel - Count rows with specific property -


i have following table:

enter image description here

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

Popular posts from this blog

python - matpltolib navigation toolbar edit curves and parameters line color automatically changes issue -

node.js - Nodejs javascript implementation of PBEWithMD5AndTripleDES/CBC/PKCS5Padding -