The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

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

Gaia Gibeon
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Thomas Schlegel
Community Champion
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 Champions.
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.