Hi team - so I have a formula for counting "errors" that occur in a specific month:
=COUNTIFS([Main row]:[Main row], 1, Created:Created, IFERROR(MONTH(@cell), 0) = 5, [Incorrect format]:[Incorrect format], 1)
What I'm trying to do now is do the same thing but EXCLUDE "General Counsel" from the counting formula:
=COUNTIF([Division requested by]:[Division requested by], (CONTAINS("general counsel", @cell)))
How do I merge those 2 formulas so I count all errors in a specific month but the "Division requested by" column DOES NOT CONTAIN "General Counsel" ?
Thanks.