Project Level Report to display projects with tasks due this week AND exclude tasks that are in Complete status
Hi, I am working on a unique project level report. I want to display projects on this report that:
1. Have tasks with a plannedCompleteDate within the current week that I open the report.
2. But ONLY if the tasks have not been completed.
I think I got #1 correct by using this exists filter:
But #2, I am not sure. I tried the below on the project level report:
AND:A:EXISTS:A:$$OBJCODE=TASK
AND:A:EXISTS:A:projectID=FIELD:ID
AND:A:EXISTS:A:status=CPL
AND:A:EXISTS:A:status_Mod=notin
AND:A:EXISTS:A:$$EXISTSMOD=NOTEXISTS
I also tried to exclude the notin MOD. So the combined filter looks like this:
EXISTS:A:$$EXISTSMOD=EXISTS
EXISTS:A:$$OBJCODE=TASK
EXISTS:A:plannedCompletionDate=$$TODAYbw
EXISTS:A:plannedCompletionDate_Mod=between
EXISTS:A:plannedCompletionDate_Range=$$TODAYew
EXISTS:A:projectID=FIELD:ID
AND:A:EXISTS:A:$$OBJCODE=TASK
AND:A:EXISTS:A:projectID=FIELD:ID
AND:A:EXISTS:A:status=CPL
AND:A:EXISTS:A:status_Mod=notin
AND:A:EXISTS:A:$$EXISTSMOD=EXISTS
I tried variations of the text mode filter, but I still get projects on the report when the tasks are in CPL status. So I think the plannedCompletionDate filter works, I just need to filter out the task status of CPL (I don't want to see the project on the report if the tasks have been completed even if the planned completion date is due this week).
I have also tried to remove the exists filter for the task status and replace it with:
tasks:status=CPL
tasks:status=notin
