If I construct and run the following filter all is well:
project = ABC AND resolution not in (Withdrawn, Duplicate) AND Teamlet = "Team A"
My results do not include any items with Resolution = Withdrawn or Duplicate.
Now, if I try to use the above as the subquery in the subtasksOf JQL function the results are not 100% correct; I created this:
issueFunction in subtasksOf('project = ABC AND resolution not in (Withdrawn, Duplicate) AND Teamlet = "Team A"')
my results include some issues with Resolution = Withdrawn or Duplicate; what am I doing wrong?
Do you mean to say that the result shows subtasks have resolutions with Withdrawn and Duplicate? If so, then you may want to change this as follows:
issueFunction in subtasksOf('project = ABC AND resolution not in (Withdrawn, Duplicate) AND Teamlet = "Team A"') AND resolution not in (Withdrawn, Duplicate)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join PM Evangelist, Axel Sooriah, & Product Ops. Consultant & Advisor, Jenny Wanger, as they unpack the role of product ops and discuss key takeaways in Atlassian’s ‘The Product Ops Mission’ guide. They’ll answer your questions live on May 6 at 9:00am PT.
Register here ⬇️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.