Hey there,
Do any of you know a way to display only active missions (not done/archived) inside an epic?
I have this Jql displaying all the active epics:
issuetype = Epic AND status not in (Done, Archived) AND Squad = DevOps ORDER BY created DESC
How can I filter out all done/archived tasks within them?
I know that option is available in the cloud version,
The Jira version I'm using is Jira v9.12.4
Thanks in advance!
Community moderators have prevented the ability to post new answers.
Welcome @Niv Hamisha
Try with this query:
issuetype = Task AND statusCategory = Done AND parent IS NOT EMPTY ORDER BY created DESC
I'm getting this response:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Nikola Perisic , I guess this is not covering the case since @Niv Hamisha is looking for undone tasks under open Epics :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Salih Tuç , thanks for letting me know! In that case statusCategory != Done should do the trick.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This will present all un-done tasks.
I'm looking to filter out all done/archived issues from this view
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.