Hello! I can combine two criterion such as a date deadline is equal to a month (e.g. April) and if a status is one of the dropdown selections (e.g. Not Started):
=COUNTIFS([Price Sheet Deadline]:[Price Sheet Deadline], IFERROR(MONTH(@cell), 0) = 4, [Round #3 Price Sheet Status]:[Round #3 Price Sheet Status], "Not Started")
But I also need to add a third criterion to check if a column has a checkbox checked with checked = Yes and not checked = No. (e.g. Yes/No, or 0/1) which is a data point if a contract was renewed (=checked) or not yet renewed (=not checked). How would I add that to this formula?