You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.