Does anybody know how to create a dynamic filter to select stories in the past?

Ana Ruiz July 24, 2015

I need to create a dynamic filter to select all the stories that were last updated seven days ago or more. I tried to use a comparison between UpdateDate and the now() function but JIRA won't allow me to substract 7 days from now() in order to make the filter dynamic.

Thank you!!

1 answer

2 votes
HarryH
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.
July 24, 2015

Try with something like: updated >= -7d ORDER BY updated DESC

Suggest an answer

Log in or Sign up to answer