Hello,
i want to create a filter for specific acceptance criteria. It should only filter for 2 acceptance criterias checked, which are "3a: CR Presentation requested" and "3b) No CR Presentation necessary". However my jql didn't work:
My JQL:
"Acceptance Criteria" = "3a) CR Presentation requested" OR"Acceptance Criteria" = "3b) No CR Presentation necessary"
Thanks for your help! :)
HI @[deleted] ,
You added the Cloud tag but the screenshot shows the Checklist for Jira Server/DC center app. Assuming this, you can target specific items in a checklist via the itemSearch JQL function:
"Acceptance Criteria" = itemSearch("name = 3a) CR Presentation requested", completion = true) OR "Acceptance Criteria" = itemSearch("name = 3b) No CR Presentation necessary", completion = true)
Hope that helps!
Thank you, it helped! I just noticed that you also use " for completion = true, so the statement is:
"Acceptance Criteria" = itemSearch("name = 3a) CR Presentation requested", "completion = true") OR "Acceptance Criteria" = itemSearch("name = 3b) No CR Presentation necessary", "completion = true")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oups, Indeed I forgot the double quotes around completion = true :-D
Sorry but glad that you spotted it. I added it because you mentioned that you wanted to look for checked criteria.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline 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.