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.
Hi,
you can create filter using JQL looking something like this:
duedate >= now() AND duedate <= endOfDay("+14")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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?
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.