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;

  1. name not empty, and
  2. status not "closed", and
  3. 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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -