Yes, I have some epics created and I would like to create a filter to show when an issue is created that does not have an epic assigned to it.
Filters are as such
Epic link = CR
Epic link = KM
Epic link = MS
How do I create a filer from the above Filters to show when an issue does not have an epic assigned to it?
Thank you very much in advance for any help.
To find if an issue is not assigned to any epic you can just look for issues which do not have any Epic link value with:
"Epic link" is empty
If you want to combine this with the above 3:
"Epic link" is empty OR "Epic link" not in (CR, KM, MS)
//Will filter issues that EITHER have no Epic link, or do but just not one of the 3
or
"Epic link" not in (CR, KM, MS)
//Will filter issues that HAVE an Epic link, just one of the 3
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.