Right now when I want to review the status of an ongoing sprint the burnup/burndown charts only show me what amount of story points are completed or not completed as per my definition of done.
However, I am unable to understand how many story points moved closer to being done. I could not find any reports which tell me how many story points moved from a certain status to another status. For now, I am manually downloading the CSV file and tracking this over Sheets. Is there a way I can view this kind of data on JIRA itself?
Hello @Nischal Sharma
When you say
"what amount of story points are completed or not completed as per my definition of done."
This is what burndown chart is for, i.e. the status on the right-most column of the board shoudl be in harmony with the "definition of done" for the team, so that when the issue moves to the right-most status then the points are burned and story is complete in sprint report as well and also "done" for the team.
If there is some discrepancy in this then it's something that the team and SM need to work together to fix.
And regarding
"I could not find any reports which tell me how many story points moved from a certain status to another status"
You can write a JQL using "was" operator and "sprint" field to find this out and then see the story poitns in the issue navigator view as a column. Query below will give you all issues in certain sprint that were in open and now are in "In Progress"
Sprint = 15668 and status was in ("open") and status = "In Progress"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.