I can find overdue issues that are not closed using filter: date due less than today.
But is there a possibility to list only issues that were closed after their respective due dates?
I cannot set date-due to less than close-date.
I can find overdue issues that are not closed using filter: date due less than today.
But is there a possibility to list only issues that were closed after their respective due dates?
I cannot set date-due to less than close-date.
Create a new custom field
Name: "Overdue" Type: "Number" Formula: IIf(DateDiff("d",[Finish],Date(),1,1)>0,DateDiff("d",[Finish],Date(),1,1),0) Rollup: Maximum (for group summary rows)
Now create a new filter and use it [Overdue] > 0
You also this custom field as a new column, and set is as graphic indicator like Red Yellow Green based on your requirements.