hello. I set up a filter to show by requests from the first day to the last day of the month, how to make that filter is updated every month ?

Yuliy July 26, 2016

This question is in reference to Atlassian Documentation: Advanced Searching

Ask your question here...

1 answer

1 vote
Bharadwaj Jannu
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 26, 2016

For the JQL written as 

project = TEST and created >= startOfMonth() AND created <= endOfMonth()

it will always check the issues created from the beginning to end of the current month. There is no need to refresh the filter for this.

Yuliy July 26, 2016

You can make so that the whole month was the information from the previous month and is only updated the first day at 00.00?

Bharadwaj Jannu
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 27, 2016

I do not get your exact requirement. If you need issues created in the previous month then add the JQL as

project = TEST and created >= startOfMonth(-1) and created <= endOfMonth(-1)

Suggest an answer

Log in or Sign up to answer