S
salvatore
I am attempting to count a series of cells based on their content. More
specifically, I want to count each that does not have either a null
value or an "N/A" in it. Everything else is fair game.
Here's the closest I've come so far:
=COUNTIF(C129:C131,OR(C129:C131 <>"",C129:C131,"<>N/A"))
The idea behind this is:
Count only those cells in range C129 to C131 where,
* The cell is not null, or
* The cell does not contain "N/A"
Sample record set:
C129 - Countme
C130 - NULL
C131 - N/A
Desired result set:
1
Am I close? Or playing deep left field?
specifically, I want to count each that does not have either a null
value or an "N/A" in it. Everything else is fair game.
Here's the closest I've come so far:
=COUNTIF(C129:C131,OR(C129:C131 <>"",C129:C131,"<>N/A"))
The idea behind this is:
Count only those cells in range C129 to C131 where,
* The cell is not null, or
* The cell does not contain "N/A"
Sample record set:
C129 - Countme
C130 - NULL
C131 - N/A
Desired result set:
1
Am I close? Or playing deep left field?