Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Filter for acceptance criteria

Deleted user February 3, 2022

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:

jira2.PNG

 

My JQL:

"Acceptance Criteria" = "3a) CR Presentation requested" OR"Acceptance Criteria" = "3b) No CR Presentation necessary"

 

Thanks for your help! :)

1 answer

1 accepted

1 vote
Answer accepted
Yves Riel _Okapya_
Atlassian Partner
February 3, 2022

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!

Deleted user February 3, 2022

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")

Yves Riel _Okapya_
Atlassian Partner
February 3, 2022

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.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events