How can I search on issues that will be overdue based on the "remainingEstimate"

Vincent Depoortere January 7, 2013

I want to be able to add an interval to a date. E.g. I would like to be able to add the following criterium in a JQL statement: duedate < (now() + remaingEstimate).

How can I accomplish this?

Thanks!

Vincent.

1 answer

1 accepted

1 vote
Answer accepted
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 7, 2013

Take a look at the jql functions in the script runner plugin. It lets you do things like:

issueFunction in expression("resolution is empty", "remainingEstimate + today &gt; duedate")

The first part is a jql query, the second part is an expression that will filter these further... but have a look at the docs.

Vincent Depoortere January 14, 2013

Thanks, that did it!

Suggest an answer

Log in or Sign up to answer