I have a metrics sheet with a cross sheet reference where I'm calculating a sum for each month with the below formula:
For January =SUMIF({Refund Issue Date}, IFERROR(MONTH(@cell ), 0) = 1, {Refund Amount})
For February =SUMIF({Refund Issue Date}, IFERROR(MONTH(@cell ), 0) = 2, {Refund Amount})
and so on.
How do I include the year in this formula? I want to sum all January refund issue dates for 2025 (and so on).
Thank you!