Hi,
We have a base that, amongst other things, generates requests and records when the request is completed. To provide feedback on performance, we measure the number of working days it took to complete the task using:
WORKDAY_DIFF({Request Date},{Time Processed})
We can then use a Summary Block to give an average “headline" of the number of working days taken to complete.
We then have then used the following to report the average during the previous month:
IF(DATETIME_FORMAT({Request Date}, “YYYY-MM”) = DATETIME_FORMAT(DATEADD(NOW(), -1, “month”), “YYYY-MM”),WORKDAY_DIFF({Request Date},{Time Processed}),BLANK())
So here, during Aug, it will give the average for July.
How can we have this a little more “live” by reporting the number of days taken to complete over the past 30 days?