Hi @Ernest Nji ,
What you mean by completed, tickets moved to completed status or moved to closed status.
Assuming, tickets moved to closed status, providing below query. If the your considering other status , then replace status name in the query.
status changed BY currentUser() TO CLOSED AFTER startOfMonth(-1) BEFORE endOfMonth(-1)
Hi @Sreenivasaraju P thanks for your feedback. I mean tickets moved to done status from April 1st 2022 to April 30th 2022.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This query will give all the tickets moved to done between given date range.
status changed TO DONE DURING ("2022/04/01","2022/04/30")
This will give the tickets, which moved by you only, in the given date range
status changed TO DONE BY CURRENTUSER() DURING ("2022/04/01","2022/04/30")
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.
@Sreenivasaraju P the query:
status changed TO DONE DURING ("2022/04/01","2022/04/30")
gives me the issues moved to done by all the teams in the organization but I want to pull out issues for a particular team. I tried to include the teams name but i get an error message. Please advice.
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can try below query. replace "your group name" in the query with actual group you want
status changed to Done by (membersOf("your group name")) DURING ("2022/04/01","2022/04/30")
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.