You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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
Add the following into your JQL
"ResolvedBy[People]" = currentUser()
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 @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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.