HHi I need some Help.
I need a filter that shows me the following
My Assigned Tickets , only all open Tickets from all Jira Projects, with a due time within the next 7 Days
Is it possible to use that filter in the Dashboard?
Hi Kai,
assignee = currentUser() and resolution is EMPTY and dueDate <= startOfDay(7)
What is in the Resolution field? You might not be setting that when you mark it done. You might want to add the statusCategory != Done like this:
assignee = currentUser() and dueDate <= startOfDay(7) and (resolution is EMPTY or statusCategory != Done)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.