The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL to display the list of overdue epics ?

Vinayak Biradar
July 4, 2023

Hello all.
I need an JQL to display the list of epics which wil display epics which are overdue with reference to due date ?

Also JQL for epics which will be due in next 30 days ? 

 

Thanks for the support in advance.

4 answers

3 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

3 votes
Answer accepted
John Funk
Community Champion
July 4, 2023

Hi Vinyak - Welcome to the Atlassian Community!

For the first one, try: project = ABC and issuetype = Epic and duedate <= startOfDay() and statusCategory != Done

For the next 30 days:

project = ABC and issuetype = Epic and duedate >= endOfDay(-30) and duedate <= endOfDay(30) and statusCategory != Done

1 vote
Answer accepted
Kseniia Trushnikova
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
July 4, 2023

Hi,

issuetype = Epic AND due <= "0"

issuetype = Epic AND due <= 30d

1 vote
Answer accepted
Diogo Teles
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
July 4, 2023

The JQL you would use to display the list of epics which are overdue would be something like this:

issuetype = Epic AND duedate < now()

This will list all Epics where the due date is in the past (overdue).

For the second part of your question, to find the Epics which will be due in the next 30 days, you would use this JQL:

issuetype = Epic AND duedate >= now() AND duedate <= 30d

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Vinayak Biradar
July 11, 2023

Thanks all

DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
TAGS
AUG Leaders

Atlassian Community Events