My Stuff
Loading
-
Re: Avg time to close cases
As far as I know you have to compute that yourself with a formula, something like this: case when to_number(to_char({closeddate},'D'))<to_number(to_char({createddate},'D')) then -2 else 0 end + mo…1