Forums

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

'Overdue more than 1 week' filter

Iwona Kalinowska February 11, 2020

Hi everyone, I am trying to filter tickets in Jira that are overdue for more than 1 week post due date. Trying the syntax below but seems that this is not correct.

project="Digital Analytics" and status not in (Resolved, Closed, Done) AND due >= now("+7d")

Can someone please help to modify?

2 answers

2 accepted

3 votes
Answer accepted
Mark Arrowsmith
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 2, 2021

I like using statusCategory in those cases, rather than listing out all statuses that equate to done:

project="Digital Analytics" and statusCategory != Done AND due is not EMPTY AND due <= -7d

Cheers,

Mark

1 vote
Answer accepted
Alexander Ling
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 Leaders.
February 12, 2020

Hello @Iwona Kalinowska 

I tried some JQL searches and this one worked for me if I understand your requirements correctly. Please get back to me if it doesn't work.

project="Digital Analytics" and status not in (Resolved, Closed, Done) AND due < now() AND due <= -7d

I hope that this answer solves your issue! :-)

Best regards,

Alexander

Alexander Ling
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 Leaders.
February 12, 2020

You can probably remove the "due < now()" now that I look at it again.

Iwona Kalinowska February 12, 2020

Worked! thanks a lot Alexander :)

Suggest an answer

Log in or Sign up to answer