I need JQL to find no.of issues which are closed/passed but not reopened at all in a week

srinivasskc30 March 28, 2018

I need a JQL to find no. of issues which are closed/passed when it came to testing. and also closed by stakeholder, without any reopen of the case.

 

I tried a JQL, Where it says: resolution was closed but again it was changed to open.

project in (network) AND resolution was Closed AND resolution  changed TO (Open,Pending,Reopened,Unresolved) AND  updated >= "-7d"  ORDER BY reporter ASC, priority DESC, updated DESC

Is there a way to know, if resolution not changed to ?

1 answer

1 accepted

2 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.
March 28, 2018

Well, if not reopened means the status is still closed, correct? Then this could be your solution:

project =network AND resolution = Closed AND resolution  changed TO Closed after startofweek()  ORDER BY reporter ASC, priority DESC, updated DESC
srinivasskc30 March 30, 2018

Thanks, It works.

Suggest an answer

Log in or Sign up to answer