Hello,
I'm trying to build a basic task report that will pull all tasks that were completed after the planned completion date. Essentially actualCompletionDate > plannedCompletionDate. However, I want to exclude the time from the calculation. I tried playing with the CLEARTIME, but I was unsuccessful. Any help would be appreciated!
Thanks
Views
Replies
Total Likes
we had a similar need a while back and if I recall correctly, you can't really do this in a report filter. We ended up making a calculated field that would just ping "late" based on our specific needs at the time, and then ran reports on everything that was "late".
(our needs at the time was we only wanted to look at stuff that was more than 2 days late, so the calculated field was basically actual > planned+2... might have had a cleartime in there as well)
Views
Replies
Total Likes
This article helped me build a similar task report. https://experienceleague.adobe.com/en/docs/workfront/using/reporting/reports/custom-view-samples/fil...
Go to a list of tasks.
From the Filter drop-down menu, select New Filter.
Click Add Filter Rule and add Actual Completion Date >Greater Than > Select a date.
Click Switch to Text Mode.
In the Set Filter Rules for your Report area, add the following code:
actualCompletionDate=FIELD:plannedCompletionDate<br>actualCompletionDate_Mod=gt
Click Done, then Save Filter.
Views
Replies
Total Likes
If I could just cleartime from the below I'd be in business!
actualCompletionDate=FIELD:plannedCompletionDate
actualCompletionDate_Mod=gt
Views
Replies
Total Likes