Currently using this filter:
issuetype = "Convert Logo" OR issuetype = logo AND assignee = currentUser() AND status in (Open, "In Progress", Reopened) AND status not in (Complete) ORDER BY summary ASC
Tasks with the status Complete are still displaying.
Hi Allen,
you use 2 times status field. Please try this jql:
issuetype in ("Convert Logo","logo") AND assignee = currentUser() AND status in (Open, "In Progress", Reopened) ORDER BY summary ASC
it should automatically exclude issues in Complete status
That worked! Thank you.
I had originally used:
issuetype = "Convert Logo" OR issuetype = logo AND assignee = currentUser() AND status in (Open, "In Progress", Reopened) ORDER BY summary ASC
...with no success. That's when I tried explicitly telling to not include Complete.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, the error in your original query wasn't to use twice the status field but not putting the "OR" expression in brackets.
(issuetype = "Convert Logo" OR issuetype = logo) AND assignee = currentUser() AND status in (Open, "In Progress", Reopened) AND status not in (Complete) ORDER BY summary ASC
However, Michal query looks much nicer still
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.