Hi there, were you able to figure this out? I'm trying to do the same thing, I want to only pull when the difference in durations was anything over 1 week into the report...
Also want same thing in a different report for when planned vs actual hours is difference of X... @imgrund do you know what I could use for this?
Hi Madalyn -
For your instance, I would do a calculated field on tasks that does the calculation of how many days difference you have, and then do the filter on that.
The calculation I tend to use is
IF(!ISBLANK({actualCompletionDate}),PROD(WORKMINUTESDIFF(CLEARTIME({actualCompletionDate}),CLEARTIME({plannedCompletionDate})),IF(CLEARTIME({actualCompletionDate}) < CLEARTIME({plannedCompletionDate}), -1, 1))/480,"")Not sure how your setup is for your instance, but this would require that all tasks have a custom form attached to them.
Then for your report, you will run a task report where the Duration Slippage (or whatever you called the calculated field) is greater than 5. That will then show you all the tasks overdue more than a week.
It is also nice to have this number on the form because then you can also do the average duration slippage by various components to help identify issues that might need to be addressed or templates that need to be updated. 😎