Hi Atlassian Community,
I'm having some trouble with one of my filters.
We need to have a filter which shows unresolved issues for specific users, and also shows resolved issues for those users from the past 7 days (to see the progress they have made in the past week).
My current filter is this:
assignee = employee1 AND resolution = Unresolved OR resolutiondate > startOfDay(-7) OR assignee = employee2 AND resolution = Unresolved OR resolutiondate > startOfDay(-7) OR assignee = employee3 AND resolution = Unresolved OR resolutiondate > startOfDay(-7) ORDER BY assignee DESC, resolution ASC, key DESC
The issue here is that it is showing resolved issues from other users in the past 7 days instead of just applying to the specific users. Changing the "OR resolutiondate" to an AND doesn't work because it can't be unresolved and have a resolution date.
Any tips please?
Thank you.
Kind Regards,
Gary Shergill
USE () precedence concept: like
assignee = employee1 AND (resolution = Unresolved OR resolutiondate > startOfDay(-7)) ......
Hi ck,
Brilliant! Thank you very much =)
Kind Regards,
Gary Shergill
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.