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.
Preciso de uma função para pegar as issues type que foram canceladas dentro da sprint. Estou tentando com a função Open Sprints mas provável que nao esteja funcionando por ser um campo que não se configura uma data.
project = "A" AND Sprint in (openSprints()) AND status in (Cancelado, Canceled, Cancelada) and resolutiondate in (openSprints())
Alguém teria uma ideia para resolução?
Obrigada!
Hi @Renata Gabardo and welcome to the Community!
Unfortunately it is not possible to search for the start or end dates of sprints in JQL. There is a feature request for that type of functionality that you can track here: JRACLOUD-72007
You can search for issues that changed to a specific status between two dates, but you would have to explicitly mention those dates like this:
Status Changed to "Canceled" DURING("2023/03/01","2023/03/14")
Given that you seem to be trying to find issues in your Open sprints, you may even come close (and maybe even have a more dynamic solution) if you just ignore the dates and use the normal length of your sprints as workaround. Lets assume you use traditional 2-week sprints, you could try the following:
Sprint in OpenSprints() AND status changed to "Canceled" AFTER -14d
This would return all issues in your current sprint(s) that had their status changed in the last 14 days. That would obviously also include issues that were cancelled earlier than the sprint started, but I assume it does not make any sense adding them to the sprint after the sprint start just if they were cancelled earlier on.
Hope this helps!
Obrigada pela resposta!! •
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.