Filter 1 = Criteria 1
Filter 2 = Criteria 2 and issuekey not in (Filter 1)
I am struggling to implement filter 2 where I want to exclude the issue keys which are result of filter 1.
Please advise.
JQL supports the field "filter" to achieve what you're looking for, so a query like:
Filter2 AND filter != "Name or ID of Filter1"
should do the trick. For more information, I highly recommend the very good advanced search documentation by Atlassian. The link will lead you directly to the explanation of the "filter" field I described above. Please let me know if this answers your question.
Best, Max
Thanks Max. it worked and is really a nice and short way.
Thanks for sharing the link.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why don't you try to just use the filter 1 like so:
Filter 1 = Criteria 1
Filter 2 = Criteria 2 and not (Criteria 1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It has to be "not in (Criteria 1)", another option is "!= Criteria1"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Jakub.niepsuj
Filter 2 = Criteria 2 and not (Criteria 1) worked for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.