What is the JQL to determine “Closed Fix Versions with Open Tickets“?

Robert Dalton May 14, 2020

We have multiple projects in which PMs close Fix Versions even though there are open tickets.  I am looking to generate a report so that I can notify the PMs that they need to address these open tickets.

1 answer

0 votes
Ingo Mohr May 14, 2020

Hi Robert,

you could query something like this:

fixVersion in releasedVersions() and statusCategory not in (Done)

Instead of statusCategory you could also use something like

fixVersion in releasedVersions() and status not in (Done, Closed, Completed)

 

Note: tested on Jira Server 8.5

Suggest an answer

Log in or Sign up to answer