How do I use the JIRA report filter to show issues that have not been updated for over 1 week? Over 2 weeks? Longer? By employee? and possibly show only those where status = in progress or review.
If I understand the request correctly, you could create a custom JQL Filter, and the plugin in confluence pull in the filter.
Your JQL search could look like this:
project = ab and updated >= -2w and assignee = is not EMPTY and status = "In Progress"
ok - getting somewhere! I tested the report by updating one of my issues (so that it would reflect update by today's date). The issue is not rolling off the report - what am I doing wrong?
Also - what is the best way to show issues that have not been updated between 1 and 2 weeks? And over 2 weeks old?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I changed the filter here: updated <= -1w ....this shows all outstanding issues that have not been updated within 7 days. Would this be correct ( I am confused on the double negative here)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"now" still matches "updated >= -2w" - in English, that's "updated after 2 weeks ago"
You'll need to add an end clause like
"updated >= -2w and updated < -1w"
For the "over 2 weeks", you'll need another filter, with "updated < -2w"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.