I am putting together two sets of formulas so I can capture the number of tasks within a certain year and month, and another set to see which of those are completed.
My formula that works to capture the number of tasks is (in this example, January 2024:
=COUNTIFS({GA Date}, IFERROR(MONTH(@cell), 0) = 1, {GA Date}, IFERROR(YEAR(@cell), 0) = 2024)
Now, I want to make a new formula to see if the Status is "Completed":
=COUNTIFS({GA Date}, IFERROR(MONTH(@cell), 0) = 1, {GA Date}, IFERROR(YEAR(@cell), 0) = 2024, {Status}, "Completed")
Now I am receiving an INCORRECT ARGUMENT SET error and not sure why. Both column ranges are the same, and I don't see any missing arguments or extra functions (as the documentation says).