I'm trying to add to this query to filter out only 'backlog' statuses in 'EINF'. Is this possible?
project in (DIT, EINF) OR "Agile Team" = Infrastructure ORDER BY Rank ASC
I figured out my own question :)
project in (DIT) OR project in (EINF) AND status not in (Backlog) OR "Agile Team" = Infrastructure ORDER BY Rank ASC
Hi @Robin Arnold,
I found some JQL in another post that may help. Try the query below (I've put the new text in bold and italic)
project in (DIT, EINF) OR "Agile Team" = Infrastructure AND (sprint IS EMPTY OR sprint IN closedSprints() AND sprint NOT IN (openSprints(), futureSprints()) AND status != Done) ORDER BY Rank ASC
Here is what the added JQL does
sprint IS EMPTY OR sprint IN closedSprints()
sprint NOT IN (openSprints(), futureSprints()) AND status != Done
Hope this helps, for more info on how this was developed you can visit the original post
-Scott
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.