Query to filter the issues for each consecutive weeks

mallikarjun kalal July 17, 2015

I am filtering the issues which were moved from status test to  client review using :

project = Kt and status changed from  test to client review

we have another requirement to be added to the above , like

is it possible to filter it on weekly bases (for each consecutive weeks) ?

 

2 answers

0 votes
Thiago Zandona
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 17, 2015

Hey Mallikarjun,

 

Yes, it's possible! If you put "AFTER startOfWeek()" parameter at the end of your query it will do the trick. It will be like this:

project = Kt and status changed from test to client review AFTER startOfWeek()

You can refer to the page below for even more information regarding JQL:

https://confluence.atlassian.com/display/JIRA063/Advanced+Searching

 

Cheers,

0 votes
Chris Kast July 17, 2015

You can add

AFTER -7d

to get the issues that changed in the last 7 days. So it would be: 

project = Kt and status changed from test to client review AFTER -7d

Suggest an answer

Log in or Sign up to answer