Forums

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

Is there a JQL that shows me tickets that are due in next two weeks?

anjani_kava October 16, 2019

My Kanban board has tickets and instead of creating a sprint, I just want to create a filter that will show me tickets are due in the next two weeks. 

1 answer

1 accepted

6 votes
Answer accepted
Hana Kučerová
Community Champion
October 16, 2019

Hi,

you can create filter using JQL looking something like this:

duedate >= now() AND duedate <= endOfDay("+14")
anjani_kava October 17, 2019

Thankyou. This worked 

anjani_kava October 18, 2019

@Hana Kučerová  - apart from the above can you also help me create a filter that shows me tickets that are past the due date and not updated/closed.

Hana Kučerová
Community Champion
October 18, 2019
duedate < now() AND resolution = Unresolved 

This JQL will show all overdue tickets, which are not resolved (field Resolution is empty).

It could work, but maybe you will need something more specific. I'm not sure about "not updated" - does it have any special meaning? Do you always fill in the Resolution field, when you resolve the issue?

Like frederic likes this

Suggest an answer

Log in or Sign up to answer