Picture for 1000 Alex:
How do I get Jira to show the name of the state on the right column?
It shows when there is more than one option in the column, but seems to hide this info when there's only one.
In this case, we have 3 states mapped to the closed column, but they're not all accessible from the "In Progress" state. It would be better if the right column told me that it is actually putting things in a "Rejected" state (as there's currently a bug in our workflow..)
I would try something like this:
project = "X" AND issuetype = bug AND priority > Medium AND status was not in (Closed, Archived) during ("2017/03/01", "2017/03/31") and created <= "2017/03/31"
Notice that we are looking or tickets that didn't occupy those statuses during that time period. We also need to filter out any tickets created AFTER that which is why we only want to return tickets created at or before your date range.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.