3

I want to generate metrics for each version of my project what status I have that were reopened and closed. For the "closed" it's ok, but for the "reopened" for old version now they are closed I can't find them in reopen status. Is there a way to count the number of "Reopened" tickets in a JIRA project that they were closed now I can't find in normal filter.

Davide Patti
  • 3,391
  • 2
  • 18
  • 20
Emna Ayadi
  • 2,430
  • 8
  • 37
  • 77

1 Answers1

3

I have just found a solution with advanced filter with an SQL code :

project = Name_of_my_project AND status WAS Reopened AFTER "-4w"
Emna Ayadi
  • 2,430
  • 8
  • 37
  • 77
  • 1
    Yay solution! If you want to find issues which were reopened during that time, you could use something like "WAS NOT Reopened ON -4w AND WAS Reopened AFTER -4w". – Mike Britton Sep 06 '17 at 13:46