Awesome that I could help. You can mark my answer as correct then. This way I get some virtual bonus points 😉
With kind regards
Mario
Hi Marie,
It seems like you are missing appropriate parenthesis. Your current jql assumes following paranthesis:
(project in xxx AND reporter = xxx AND type = big) OR (type = change request) OR (type = story AND resolution = unresolved) OR (resolution = fixed AND status = closed)
It evaluates the AND statements first and that is why your results are skewed.
Following jql would be most likely what you want:
project in xxx AND reporter = xxx AND (type = big OR type = change request OR type = story) AND (resolution = unresolved OR resolution = fixed) AND status = closed
With kind regards
Mario
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mario, thank you for the help. I have updated the filter as you suggested but it still seems to pulling resolved ones with the resolution duplicate & withdrawn etc in the resolved count?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Scrap that it’s worked, my fault! Thank you so much really appreciate the help!!!
Warm regards,
Marie.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My pleasure .
I actually never used custom jql in a predefined report. It is possible that it shows in this predefined report always all resolved issues (regardless of your custom filter).
You can test this by searching with the jql in the normal issue search. If the found issues are correct there thus is the case. Then you would have to create a new custom report with this jql for one graph. And a similar jqlfor the created issues. Unfortunately I cant access jira right now so i cant try it myself.
Best of luck anyway.
Kind regards
Mario
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.