Hello!
I am using a formula to count if there is a checkmark in a column during a certain month and year. The formula is as follows and works perfectly:
=COUNTIFS({MCFS Safety and Service Recovery Tracker cool}, =1, {MCFS Safety - Service Recovery Date of Incident 1}, AND(MONTH(@cell) = $[Month #]@row, YEAR(@cell) = $[Year #]@row))
My need for help if with the following:
I tried to use the same formula to count if the checkbox was unchecked and it gives me an error message. The following is what I did:
=COUNTIFS({MCFS Safety and Service Recovery Tracker cool}, 0 , {MCFS Safety - Service Recovery Date of Incident 1}, AND(MONTH(@cell) = $[Month #]@row, YEAR(@cell) = $[Year #]@row))
Why do I get an error for the second formula when all I did was change the "1" to a "0"?
thank you!