count rows in excel with multiple matched criteria -
i have following data in excel sheet , count number of rows match specific criteria.
b c 1 name status version 2 joe open 1.0 3 bob open 1.0 4 joe closed 1.0 5 open 1.0 6 joe open 2.0
i count rows where;
- name not empty, and
- status not "closed", and
- version not "2.0"
based on sample data above count 2 (row 2 , 3 on sheet)
how achieve this?
thanks in advance.
another possibility: advanced use of sumproduct() function:
=sumproduct(--(a1:a5<>""),--(b1:b5<>"closed"),--(c1:c5<>"2.0"))
Comments
Post a Comment