I have my average resolution for each ticket that is opened, and then i want to reach a summary sheet for each quarter that gives me my average resolution based on the quarter by month - i'm using my resolved date column so its in a date format. This is the formula that I am using, however i keep getting errors
This gives me #DIVIDE BY ZERO and then i add an IFERROR, and then i get #UNPARSEABLE
=AVG(COLLECT({ResolutionDuration}, {ResolutionDuration}, <>"", {ResolvedDate}, IFERROR(MONTH(@cell ), 0) >= 1, {ResolvedDate}, IFERROR(MONTH(@cell ), 0) <= 3, {ResolvedDate}, IFERROR(YEAR(@cell ), 0) = 2025))
Does anyone know what i'm doing wrong?