I'm trying to have a formula that will work if one column matches specific criteria and then if another column matches one of two criteria. I have been able to get it to work for one of the criteria from the second column by writing
=(COUNTIFS({Assigned Owner}, [Assigned To]2, {Project Progress}, <>"Closed"))
However, whenever I try and make the second column be either <> "Closed" or <> "Closed - no action" I keep getting an error. I have tried both
=(COUNTIFS({Assigned Owner}, [Assigned To]2, {Project Progress}, OR(<>"Closed", <>"Closed - no action")))
and
=(COUNTIFS({Assigned Owner}, [Assigned To]2, {Project Progress}, <>"Closed", OR({Project Progress}, <>"Closed - no action")))
I'm not sure how to format this and I've looked through other questions but what I'm finding in those don't seem to work here.