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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.