The logic I am trying to create for my filter is: Has Label A or Label B and Status is Not Completed or Open.
I keep trying the statement: labels = A AND labels = B AND Status not in (Completed, Closed)
But this statement keeps leaving out JIRAs that have one or the other labels, it only show JIRAs with both labels
try the following...
(labels = A OR labels = B) AND Status not in (Completed, Closed)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried: labels = A OR labels = B AND Status not in (Completed, Closed)
but it keeps showing my closed ones as well
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.