I'm trying to calculate the average time it takes to close a ticket. I know that I want to use SUMIFS/COUNTIFS. The COUNTIFS formula works fine: =COUNTIFS([Initiative/Program]:[Initiative/Program], CONTAINS("Metrics/Reporting", @cell), [Start/Raised]:[Start/Raised], AND(@cell <= TODAY(), @cell > TODAY(-30)))
I'm struggling with the SUMIFS. I want to add the cells in Time to Close if the Initiative/Program Contains "Metrics/Reporting" and the Start Date is within the last 30 days.
I'd appreciate any help with my fomula.
=SUMIFS([Time to Close]:[Time to Close], [Initiative/Program]:[Initiative/Program], CONTAINS("Metrics/Reporting", @cell), [Finish/Due]:[Finish/Due], AND(@cell <= TODAY(), @cell > TODAY(-30)))