A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I'm looking to create a COUNTIF function which basically says, "Count all the occurances from this column if every value EXCEPT this one value is present."
So, assuming I am need to count all occurances from column A:A with the exception of the value "RH", what would that formula look like?
Thanks in advance!
Try something like this...
| A |
|---|
| B |
| C |
| D |
| A |
| B |
| C |
| V |
| A |
| A |
| A |
Let's assume that's your data in the range A2:A15. You want to count all cells that aren't empty but want to exclude from the count all cells that contain "A".
=COUNTIFS(A2:A15,"<>",A2:A15,"<>A")
That formula will return 6. Assumes the cells are empty and don't contain formula blanks.
--
Biff
Microsoft Excel MVP