Hello Support
I need to generate a monthly report of all of the customer Jira's that I resolved. These will be created and updated by different user id's and account, but in the end I was the specific user that verified and resolved them
Thanks
-Bill
Hi @Bill,
This isn't Atlassian support, but a community of users :)
You could try this JQL (I've italicized the fields you would need to input).
project = XYZ AND status changed BY youruserid AND status changed to done AND resolutiondate > "2020/12/01 00:00" AND resolutiondate < "2020/12/31 00:00"
Explanation
Add the following into your JQL
"ResolvedBy[People]" = currentUser()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could combine this with the other clause that Ash indicated to specify the time limits for your report:
AND resolutiondate > "2020/12/01 00:00" AND resolutiondate < "2020/12/31 00:00"
Or assuming that tickets move to status 'closed' when they get resolved, this clause would help keep your query invariable:
AND status changed to closed AFTER startOfMonth(-1) BEFORE startOfMonth()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Kat Warner
This filter can we use for dashboard? to show tickets counts closed and time taken ? could you pls suggest which dashboard prefer? thanks
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.