Hide issues in a column after 'x' days

Manmohit Sehgal June 6, 2017

Hi, 

I am trying to write a filter where after 'x' amount of days (say 5) issues in "Closed" column can disappear. 

Can we write a JQL filter to do so?

This is what I have so far
project = PROJ AND issuetype = "ISTYP" AND  status in (Research, Research1, "Research2", Research3, "Final Research4", Closed) AND (status = Closed OR "Closed Date" > -5d)

2 answers

0 votes
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.
June 6, 2017

Hi Manmohit,

that should do the trick:

project = PROJ AND (status in (Research, Research1, "Research2", Research3, "Final Research4") OR status changed to Closed after -5d ) 

0 votes
Manmohit Sehgal June 6, 2017

   

Suggest an answer

Log in or Sign up to answer