Hello,
I am trying to create a filter which shows all the tickets I am involved and status is not closed/resolved. I am using this filter below however it shows all the tickets even though I am asking not to see the resolved/closed ones?
status not in (Closed , resolved) or summary ~ currentUser() OR description ~ currentUser() OR comment ~ currentUser() OR assignee = ELIF OR reporter = ELIF
Thank you.
Hi Elif,
add brackets:
status not in (Closed , resolved) and (summary ~ currentUser() OR description ~ currentUser() OR comment ~ currentUser() OR assignee = ELIF OR reporter = ELIF)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The way I read it all you have are 'or' conditions so a ticket that meets ANY of the conditions would be listed. You need to put all the conditions besides status together and test for them and then that the issue is not in closed, resolved.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Joel Pitt , I figured it out. Thank you so much for the quick response!
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.