2

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.

Ashok Ramachandran
  • 11,082
  • 1
  • 22
  • 50
DevilaN
  • 121
  • 3

1 Answers1

1

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.

  • Is this "Formula" standard thing in Redmine? Because I've found only plugins that work with EasyRedmine only. Also there are requests for "custom fileds with mathematical calculation" in redmine project, but either of them has been successfully resolved and implemented. – DevilaN Mar 23 '18 at 09:06