Can I have different date limitations for different statuses in the same filter?

Gaia Gibeon February 19, 2017

I'm trying to set a filter for Kanban board that will do the following:

  1. If the task's status is New or In progress - show all of them 
  2. If the task's status is Done - only show tasks from the beginning of the week. 

Is it possible to have different date limitations? In the same filter?

Or maybe I can solve it with sub-filter?

Thanks  

 

2 answers

1 vote
Thomas Schlegel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 19, 2017

Hi Gaia,

something like that should work:

(status = New) OR (status = Done AND createdDate >= startOfWeek())

0 votes
Ignacio Pulgar
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 22, 2017

Try setting this JQL in your board's filter:

project=<KEY> AND (status in (New,"In Progress") OR (status=Done AND status CHANGED TO Done AFTER startOfWeek())) ORDER BY Rank ASC

Where <KEY> should be substituted by the key of the project which issues you would like to show in your board.

You can add multiple date conditions to the same query; it just requires to pay attention where you put the parenthesis.

Suggest an answer

Log in or Sign up to answer