I have a formula I created to create an average based on multiple criteria over a rolling year. The formula pulls from two different sheets. My leaders are asking that I convert this to show the average by each month and only focus on the current year instead of a rolling year. I've created rows to represent each month, and I've been trying several things to modify my formula to look at January of this year but nothing is working. My existing (rolling year) formula is below....any thoughts on how I would convert this?
=IFERROR(AVG(COLLECT({Total Days to Complete (SLA)}, {Complete Date}, ISDATE(@cell), {Complete Date}, MONTH(@cell) >= (MONTH(TODAY()) - 12)), COLLECT({Total Days to Complete (SLA) Archive}, {Complete Date Archive}, ISDATE(@cell), {Complete Date Archive}, MONTH(@cell) >= (MONTH(TODAY()) - 12))), "")