I am trying to come up with a formula to count the number of items with any date within the month of January 2020 and have a box checked.
I was able to figure out the formula to get the total count of items within the month of January 2020 using this:
=COUNTIFS([Permit Start Date]:[Permit Start Date], IFERROR(MONTH(@cell), 0) = 1, [Permit Start Date]:[Permit Start Date], IFERROR(YEAR(@cell), 0) = 2020),
I would like to now have items within the month of January 2020 that have the "360 Photos Have Been Submitted" not checked. I tried the following but it did not work:
=COUNTIFS([Permit Start Date]:[Permit Start Date], IFERROR(MONTH(@cell), 0) = 1, [Permit Start Date]:[Permit Start Date], IFERROR(YEAR(@cell), 0) = 2020),[360 Photos Have Been Submitted]:[360 Photos Have Been Submitted], 0)
I see the columns being highlighted but I get an "Unparseable" error.
Any help would be greatly appreciated!