So we have a dashboard and am trying to do a count for legal requests. Two metrics, one would be for all requests received and completed for the current month, and the second would be all requests received and completed for the year. Here's the two formulas but they don't seem to update correctly:
Current month: =COUNTIFS({Resolved Date Range}, IFERROR(MONTH(@cell), 0) = MONTH(TODAY()))
For the year: =COUNTIFS({Resolved Date Range}, IFERROR(YEAR(@cell), 0) = YEAR(TODAY()))
What am I doing wrong?