We need to identify all the issues created after their sprint started, or all the issues with a difference of Created Date and Due Date smaller than 3 days.
The thing is, I need this regarding multiple sprints (completed and ongoing), I need the issues list, not the quantity.
I thought of filling a field with the difference between 2 dates (be it the Sprint Start or the Created Date), and then gathering all issues whose number is less than 3, but since our Jira has about 4000 issues, just searching won't cut, since there's a limit of issues the automation can gather (100, if I'm not mistaken).
I can't find any way to find and group these issues... I know a bit of JQL and the Smart Values, but I haven't found a way to implement any of these to get the list I need... Any tips are welcome...
Thanks!
Olá Mateus, tudo bem?
Unfortunately, Jira’s native JQL does not support comparing date fields (e.g., dueDate - created < 3) or referencing the sprint’s start date directly.
A more scalable and accurate approach would be using the Jira REST API with a Python script. Here’s the idea:
GET /rest/agile/1.0/board/{boardId}/sprint
GET /rest/agile/1.0/sprint/{sprintId}/issue
This method bypasses JQL and automation limits, gives you full control over logic, and allows you to export the data as needed.
That said, this approach requires some technical knowledge, so it may not be the quickest solution if you’re not comfortable with those tools.
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.