Hi team,
Is there any way to check the status of an issue moved to a particular status
For e.g. I need to track the number to stories move to "X" Status by month. Like How many user stories are moved to "X" status in Jan. Feb, March and so on!
Thanks!
Hi @Sushant Verma ,
Below should work. It lists the issues that were changed to Done status in August.
status changed to done during("2021/08/01","2021/09/01")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sushant Verma ,
If you are looking for more insights on status durations and status entry dates, you can try Status Time app developed by our team. It provides reports on how much time passed in each status and show status entry dates.
If you are looking for a free solution, you can try the limited version Status Time Free. Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could try something like this in the advanced issue search:
status changed TO done and (status changed AFTER startofmonth() and status changed BEFORE endofmonth()) order by created DESC
Replace the "done" status with your status.
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.
@Sushant Verma kindly mark the answer as accepted, to help other in the community looking for similar answers.
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.