I have the following data in a excel sheet and would like to count the number of rows that match specific criteria.
A 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 would like to count all rows where;
- Name is not empty, AND
- Status is not "Closed", AND
- Version is not "2.0"
based on the sample data above the count would be 2 (row 2 and 3 on the sheet)
How could I achieve this?
Thanks in advance.