I am trying to find the list of tasks which are moved to Done status after the Duedate in August month.
Can someone help me with the JQL?
Hi @Deepak Suresh ,
You can try Status Time app developed by our team at Bloompeak. It provides various reports. One of them is status entry dates. You can list status entry dates as well as resolution dates of issues with a jql like 'status changed AFTER endOfMonth(-1) and status = done' and export the report. Then you can compare the two dates.
Here is the online demo link, you can see it in action and try. Hope it helps.
The JQL can't compare by itself if duedate>resolutionDate, wich is what you want.
You can, however, use a plugin/app to create a custom scripted field (lots of options in the market, check out myGroovy, for example) so this custom field returns 1 if the condition is met and 0 otherwise.
The JQL would then simply be something like:
status changed AFTER endOfMonth(-1) and status = done AND cf_00000 = 1
Hope it helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Deepak Suresh ,
This should help:
status changed AFTER endOfMonth(-1) and status = done
Cheers,
Jason
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No. I mean.. each tasks have a specific due date. I want to find the list of over due tickets in last month.. I mean the tickets which are moved to done status after the task's due date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Currently those tickets are in closed status.. and some are still in done status..
I list want to find which tasks are delivered after the due date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.