The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
The below query is still pulling Closed tickets from the project and I am not sure if I am just writing the query wrong or what other cavats I am missing here.
project = "PROJECT" AND comment ~ term1 OR comment ~ term2 AND status not in (Closed, resolved)
Thank you for your help
Can you try this...
project = "PROJECT" AND (comment ~ term1 OR comment ~ term2) AND status not in (Closed, resolved)
Just a little context here, you should consider an OR statement as a break in your JQL. Any thing you introduce an OR (without enclosing it in brackets) it will break up your query.
So in your example you basically said:
project = "PROJECT" AND comment ~ term1
OR
comment ~ term2 AND status not in (Closed, resolved)
So your second status limitation does not reflect the first part. The way Jack mentions it you'll actually use both OR comments as a single statement and all AND's will be concatenated.
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.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.