I have a formula that returns the number of Volunteers we have signed up IF they are assigned to any stand (it will not count them if they are assigned Waitlist or $$). My current formula that IS working is: =COUNTIFS((Contact:Contact), <>"", (STAND:STAND), <>"*Waitlist", (STAND:STAND), <>"$$")
It works great. However, I want to add in that the Volunteer should NOT be counted if they are listed as a No Show (they didn't show up, which is noted in the Lead column)
I attempted to do this by adding (Lead:Lead), <> "No Show" My entire formula I used was: =COUNTIFS((Contact:Contact), <>"", (STAND:STAND), <>"*Waitlist", (STAND:STAND), <>"$$", (Lead:Lead), <>"No Show")
However, when I do this to the formula, it returns the value of 0. The value was 3 prior to adding the No Show part of the formula. What am I missing? It seems like it must be something so simple.