JQL Query to find issues that have transitioned between two specific dates and statuses

Daniel Jonsson October 16, 2013

The JQL below almost works, but this also shows tickets that have been updated with anything (such as a comment). I only want to see issues that transitioned between Open and Resolved/Closed between two specific dates. is this possible?

project in (PROJECT) AND status changed from "Open" to ("Resolved", "Closed") AND updatedDate >= -1d

2 answers

1 accepted

25 votes
Answer accepted
Udo Brand
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 16, 2013

use

project in (PROJECT) AND status changed from "Open" to ("Resolved", "Closed") during("2013-10-01", "2013-10-17")

Aakash Mehta June 21, 2019

HI @Udo Brand,

Is it possible to find issues between two specific dates but any status to closed?

 

project = <Project Key> abd  Sprint = 72728 and status changed during (2019-06-03, 2019-06-07) from "any status" to "closed"

Udo Brand
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 21, 2019

yes, this is possible:

status changed to "closed" during ("2019-06-03", "2019-06-07")

just use the "to" and "during" predicate on the changed operator

Like # people like this
Like Hitesh.Kumar likes this
0 votes
Andrey Markelov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 16, 2013

Hello @Andrey Markelov, do you have the correct sentence to use trasitionDate("",""), my example:

status changed FROM "ejecution" TO "done"

Thanks in advanced!

Suggest an answer

Log in or Sign up to answer