Hi! I'm trying to count all responses to a SmartSheet form with the response "Non-Compliant" within the current month. End users will submit new responses each month and I need the formulas to automatically look for the current month of submissions. I've tried a few things, but always get incorrect argument or unpareseable. Here's what I've tried:
=COUNTIFS({Month}, IFERROR(MONTH(@cell), 0) = MONTH(TODAY()), {General}, "Non-Compliant") —> #INCORRECT ARGUMENT
=COUNTIFS({General}, "Non-Compliant", {Submission Month}, IFERROR(MONTH(@cell), 0) = MONTH(TODAY())) —> #INCORRECT ARGUMENT
=COUNTIF({General}, "Non-Compliant"),AND({Submission Month}=Comments1 —> #UNPARESEABLE
In the last attempt, I had a cell in the sheet where I'm producing calculations reading the current month with "=MONTH(TODAY())" - just trying different things. Any help will be greatly appreciated!