How to write an advanced filter to include all issues that don't have a label QAReview

Civic06 February 4, 2014

How to write an advanced filter to include all issues that don't have a label QAReview

This is not returning anything:

project = MEP and issuetype in (Bug, Sub-task) AND status = Development and labels not in (QAReview)

1 answer

1 accepted

0 votes
Answer accepted
Civic06 February 5, 2014

This works!

project = MEP AND issuetype in (Bug, Sub-task) and status = Development and (labels not in (QAReview) or labels is EMPTY)

Suggest an answer

Log in or Sign up to answer