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

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -