I need to find all issues in a current sprint minus the ones that had a specific state prior to starting the sprint.
project = XYZ AND Sprint = 1 AND assignee in (user)
That gets me all that users items, but now I need to filter out this: status changed to "Ready for Closure" BEFORE 2016-12-21
I cannot put a NOT in there. Is there some sort of subquery I can use or is there an operator I'm missing?
Nevermind, I got it. JIRA was crabby at me but the filter still functions (says "was" doesn't work with my status).
project = XYZ AND Sprint = 1 AND assignee in (user) and status was not in ("Ready for Closure") BEFORE 2016-12-21
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.