Forums

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

Filter function

Kai_Rehm March 24, 2020

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?

 

1 answer

0 votes
John Funk
Community Champion
March 24, 2020

Hi Kai,

assignee = currentUser() and resolution is EMPTY and dueDate <= startOfDay(7)

Kai_Rehm March 25, 2020

Hi John,

thx for your answer. When I use it like you wrote it it shows even closed tickets. I only want the open tickets.

John Funk
Community Champion
March 25, 2020

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)

Suggest an answer

Log in or Sign up to answer