Good afternoon;
So, I'm trying to create a Summary field for a sheet that counts the number of active projects therein. Some projects are completed (we're not archiving these yet), or on hold, or cancelled or whatever, so I don't want those in the total.
My thought was to COUNTIF everything in the [Current Status] column, but only if the values aren't equal to conditions indicating inactivity. The list of active values far outnumbers the list of inactive values, so this seemed like the best way to go. I've tried two formulas, and a few variations on each:
=COUNTIF([Current Status]:[Current Status], NOT(AND(@row = "Inactive", @row = "Cancelled", @row = "Completed/Closed", @row = "Suspended")))
=COUNTIF([Current Status]:[Current Status], AND(@row <> "Inactive", @row <> "Cancelled", @row <> "Completed/Closed", @row <> "Suspended"))
So far none of these or their variations have worked, giving me the dreaded #UNPARSEABLE error. I know I could probably do a longer formula (or several smaller ones) to subtract the count of each separate value from the total for the column, but I can't resist the urge to try nesting these functions so I can learn about them. Does anyone out there know what I'm doing wrong?
Thank you...