Hi,
I am trying to keep track of a project and want to know when a ticket is closed or delivered the last 4 weeks. The search is below:
project = PROJECT AND issuetype in ("Functional Requirement", "Technical Requirement") AND status in (Closed, Delivered) AND updated >= -4w
What happen is that when someone change anything that shows up in history it gets back on my list even if it the status is not changed. I guess my search probably is wrong and would really hope you have som ideas to solve it. Add-ons is not possible.
Updated holds the date the issue last changed, not just when the status changed.
Try using the "changed" operator with "status" - https://confluence.atlassian.com/jirasoftwareserver/advanced-searching-operators-reference-939938745.html#Advancedsearching-operatorsreference-CHANGEDCHANGED
Thank you, that almost solved it but I can´t get it to get only last 4 weeks:
project = PROJECT AND issuetype in ("Functional Requirement", "Technical Requirement") AND status in (Closed, Delivered.) AND status changed AFTER startOfYear()
I tried <= "-4w " , but maybe I don´t understand how these works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.