My team and I decided to re-estimate stories if they haven't been implemented within a certain time after their estimation. Our backlog contains a few hundred stories and I don't want to check them manually.
Is there a way I can leverage JQL to filter those stories which require a new estimation? I tried to use "changed BEFORE" like this:
project = KEY and "Story Points[Number]" changed BEFORE -600m
Which returns:
History searches do not support the 'Story Points[Number]' field.
I think Jira Cloud (perhaps Core Jira entirely) only supports time-based queries for certain fields (specifically the Assignee, Fix Version, Priority, Reporter, Resolution, and Status fields only).
_ _ _ _ _ _ _
You stated you want to focus on stories "if they haven't been implemented...", so I'd recommend excluding completed stories from your query:
... and StatusCategory != Done ...
If that still leaves you with too many stories to review, you can further exclude estimated stories that have been created too recently to have aged out of your timeframe of interest:
... and created < -1w and "Story Points[Number]" is not empty ...
Since there is no way (in core Jira) to use JQL to discover when a story was estimated, using the story creation date is just a guess. It's not great, since Stories can linger in a backlog for months or years after creation. But the other available dates (last edited, and last viewed) are even less helpful for this use case.
This is the easiest thing I could suggest.
_ _ _ _ _ _ _
There are Apps for Jira (paid add-ons) that provide further historical field data tracking. They can't "invent that past data", but if this is a long-term strategy for your team/organization, it might be worth that investment. Check out the Atlassian Marketplace.
_ _ _ _ _ _ _
Here's an alternate, free approach that I though of: You could also invent your own "Estimation date" field, and use Jira automation to automatically set it for you whenever the "Story Points[Number]" field is changed.
_ _ _ _ _ _ _
I hope you find one of these options helpful. Let us know what ended up working for you! Best wishes.
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.