Overdue search

Rumceisz July 23, 2014

Hi All,

is it possible to search issues which were overdued? I mean all those issues which were changed to Closed status after their Duedate?

Thanks,

Rumi

1 answer

1 accepted

0 votes
Answer accepted
Diego Zarpelon
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 3, 2014

Hey Rumceisz

You can use an SQL query on your database to see it. It will look like this:

select * from jiraDB.jiraissue where issuestatus=6 and RESOLUTIONDATE >= duedate;

This will list all overdue issues.

Hope this helps!

Diego Zarpelon
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 3, 2014

actually you should try just RESOLUTIONDATE>duedate.

Rumceisz August 4, 2014

Hi Diego,

thanks a lot!

Suggest an answer

Log in or Sign up to answer