I'm trying to create a weekly report in Confluence, and one of my filters is:
resolution = Done AND status = Shipped AND resolutiondate >= -6d
I would like the use the results from this filter and keep those specific JIRA issues in that report without the results changing week-by-week (per the resolutiondate >= -6d).
Is there a way I can do this?
I know there is a filter to specifically list issues, but is there a simpler way to grab those resulting tickets and keep them in that report?
Thank you!
hi @Meredith Moritz,
Below query filter outs issues that are resolved within specific dates. you may modify the dates as you required.
resolution = Done AND status = Shipped AND resolutiondate >= "2018-04-04" and resolutiondate <= "2018-04-10"
hope this helps!
Exactly the solution I was looking for, thank you so much Alana!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yei! that is good news :-) glad to hep you @Meredith Moritz
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.