how to filter stories based on create date

Sherry M Rodulfo August 19, 2019

In our organization, we fix list of epics to be accomplished within a Program Increment. Stories associated to them are changing because it's hard to get the final list. Now, the requirement is, list down stories newly created after the Sprint within the Program Increment started. Once identified, we have process to include them or not.

1 answer

1 accepted

1 vote
Answer accepted
Payne
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.
August 19, 2019

You can search for any issue type (be it a story, task, whatever) created recently like this:

issuetype = story and created >= -7d

That would return stories created in the last 7 days. Is something like that what you're seeking?

Sherry M Rodulfo August 19, 2019

Yeah, something like that. But it has to be part of the epics listed in the past. I think i can use your query as part of the entire JQL. Perfect! Thank you for the help, appreciate it.

Suggest an answer

Log in or Sign up to answer