Can I write a JQL query to filter for all Epics that have a status of 'To Do', AND 'In Progress' AND any epic whose status was marked as 'Done' in the past 30 days?
Is it possible to retrieve both of these groups in one JQL query?
Appreciate your help!
Hi @Holly Schomann ,
Yes. you can do this with JQL.
You can try with below query.
issuetype = epic and (status in ("To Do", "In Progress") or (status = Done and status changed AFTER -30d))
Thank you so much for your help! This almost works. For some reason I am now getting non epic tickets if they have changed in the past month?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try below query.
(issuetype = epic and status in ("To Do", "In Progress")) or (issuetype = epic and status = Done and status changed AFTER -30d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This worked!!! You are a genius!! Thank you thank you!!
Holly
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.