Jira jql query to search for tickets that status changed to a particular status after a date
Asked Answered
J

2

22

I need to filter on tickets that went into status a status of RTT after a particular date. These tickets would be resolved now but I need to see all those that entered that status after a date regardless of their current status.

Jose answered 27/2, 2013 at 20:32 Comment(0)
W
47

for example, find all issues that their status changed from Open to Closed after 2012/12/31:

status CHANGED FROM "Open" TO "Closed" AFTER "2012/12/31"

you can find for info about CHANGED search key on Atlasian's Advanced Searching page.

Wren answered 28/2, 2013 at 6:3 Comment(1)
This is the best/correct answer, even though it wasn't marked as such.Debidebilitate
B
0

type = "Bug" AND status was in ("Resolved")

Berky answered 2/5, 2017 at 17:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.