Here is my filter: (project = ABC AND issuetype = "QA Release" AND (resolved >= startOfWeek() OR resolved is EMPTY)) OR (project = DEF AND issuetype = "QA Release" AND (resolved >= startOfWeek() OR resolved is EMPTY)) OR (project = GHI AND issuetype = "QA DNS Request" AND (resolved >= startOfWeek() OR resolved is EMPTY)) ORDER BY key ASC, Rank ASC
I want to not show issues that are closed or completed. How do I add this?
Thanks
John
I think you have a lot duplication in your JQL, that makes it harder to figure out.
How about: (Project in (ABD, DEF) AND issuetype = "QA Release") OR (Project = GHI AND issuetype = "QA DNS Request") AND (resolved >= startOfWeek() OR resolved is EMPTY)) AND status not in (Closed, Completed) ORDER BY key ASC, Rank ASC
(Project in (ABC, DEF) AND issuetype = "QA Release") OR (Project = "GHIJ KLMNO" AND issuetype = "QA DNS Request") AND (resolved >= startOfWeek() OR resolved is EMPTY)) AND status not in (Closed, Completed) ORDER BY key ASC, Rank ASC
I get this error: Error in the JQL Query: Expecting either 'OR' or 'AND' but got ')'. (line 1, character 167)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think there's an extra ) after "resolved is empty" that should be removed. Copy-paste error on my part.
(Project in (ABC, DEF) AND issuetype = "QA Release") OR (Project = "GHIJ KLMNO" AND issuetype = "QA DNS Request") AND (resolved >= startOfWeek() OR resolved is EMPTY) AND status not in (Closed, Completed) ORDER BY key ASC, Rank ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nicholas: NAILED IT!! You made me look good. (doesn't take much)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome I learned a lot from people here when I started. It's just fair I try and help out.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
agree, I read these everyday and I try to do the same where I can.
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.