So I am trying to do a countifs report that counts if something has a name, a ranking and then to not count if the status is complete.
I have it working to count if it has the name and ranking, but when I try to get it to not count them if they are marked complete it does not work.
The working formula:
=COUNTIFS({Third Party Inspection Tracking Range 2}, $[Primary Column]@row, {Third Party Inspection Tracking Range 1}, [#1 - Non Compliance]$1)
But does not exclude the completed tasks, so I tried this formula to not count the completed:
=COUNTIFS({Third Party Inspection Tracking Range 2}, $[Primary Column]@row, {Third Party Inspection Tracking Range 1}, [#1 - Non Compliance]$1, NOT(FIND ("Complete", LOWER({Third Party Inspection Tracking Range 3}))>0))
But that is not working any suggestions from the braintrust of the community?