Hello,
I'm looking for some help to write a JQL that will search all projects, where the result is all Epics that have a status other than done.
Thank you in advance.
Welcome to the community, @Chris Archey 👋
You may want to (should) be a lot more sophisticated than this for many reasons. For one thing, if you have a lot of Epics in Jira, this will be a taxing search.
But here's the simplest version I can think of:
issuetype=Epic AND statusCategory != Done
Be careful,
-dave
Welcome to the community! Hopefully this helps!
issuetype = Epic and status not in (Done)
If you want to learn more about Issue Searching and JQL, check out this documentation!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project in ("*")
AND issuetype = Epic
AND status != Done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try this buddy
type = Epic and Status not in (Done, Cancelled)
You can club it with other status as well, just take precaution if used two word status like To do
type = Epic and Status not in (Done, Cancelled, "To Do")
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.