Get particular week inside JIRA filter

Juggernaut June 13, 2016

Hello.

I have a task of tracking particular issues created in particular JIRA project for every week. The filter that I use is straightforward:

 

project = Systems AND createdDate >= 2016-06-06 AND createdDate < 2016-06-13 AND (... additional query...)

 

This things I don't like is dealing with dates. Is there any way to convert this query to

project = Systems AND createdDate in weekOfYear(2016, 27) AND (... additional query...)

 

Thanks in advance.

1 answer

1 vote
Vasiliy Zverev
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.
June 13, 2016

You could try to use startOfYear and add requared count of weeks. Here is JQL for issies created at 3-th week of current year: 

created >= startOfYear(3w) and created <= startOfYear(4w)
Juggernaut January 17, 2017

Thanks! 

BTW, it gives your 4th week, but the idea is clear.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events