You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi all, hope i can find a solution to:
I want to create a filter where the project = X where the issues are set to Done a certain date by the user Y…how do I proceed? Is this possible?
Thanks!
Try something like this:
status CHANGED TO "Done" DURING(startOfMonth(-1), now()) BY username
Of course make the necessary changes to the above JQL to fit your needs. Please read also this documentation:
Thanks Alex, for some strange reason the JQL does not recognize the username despite the fact it is correct...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What message do you get?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Pete, I confirm that BY and username doesn't work. However, it works by placing the user id. To find the user id, go back to basic search, and select as e.g. assignee that user. Once you've done this, go back to jql. Now you will get something like
assignee in (5f9fb7c1c2e5390077abf628)
Copy this id to the above statement. Final JQL should look like this:
status CHANGED TO "Done" DURING(startOfMonth(-1), now()) BY 5f9fb7c1c2e5390077abf628
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nice! :D
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
You can try this:
status changed TO "Done" by USERNAME DURING (YOURDATE1, YOURDATE2)
https://confluence.atlassian.com/jirasoftwareserver/advanced-searching-939938733.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your input Mohamed, i like the idea of a data range in your query, will be useful!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.