Hi.
I would like to ask for your help to create an efficient measure for the following:
I want to sum up the Story Point i estimated for a Stories (issueType = Story) that were committed and completed in the sprint.
for example: in sprint planning i planned to do:
Story-A: 5 SP
Story-B: 10 SP
Story-C: 10 SP
And at the sprint closing i delivered:\
Story-A: 50 SP
Story-B: 100 SP
Story-D: 900 SP
I want the measure to return 15 (5+10).
I wrote the following measure but it times out in some reports. would like to explore option to optimize it.
Sum(
Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
NOT IsEmpty([Measures].[Sprint Story Points completed]
Hi!
There is one default Measure that I think it is what you are looking for:
“Sprint Story Points committed completion %”
And if you add a report filter for Issue Type = User Story, bookmarked. Then, you will have what you are looking for.
For instance: (adding the others 2 measures you can check them for testing purposes)
As I showed you, you have several predefined measures for Sprints.
So, if you want the absolute, you have the “Sprint Story Points completed of committed”.
So, in your case of:
Sprint Planning:
User Story A (5 SP)
User Story B (10 SP)
User Story C (10 SP)
End of Sprint, and you have completed:
A + B + D
It gives you A + B = 15 SP
Nacho,
to my understanding, “Sprint Story Points completed of committed”, returns the SP as they were at the time the sprint ended. so in the example above it would return 150 and not 15.
I am looking for an efficient formula that will return 15.
Hi, as a Scrum Master I´m wondering how it’s even possible to deliver more value as commited.
Story points are “stable” on a backlog item, cause we do not measure spended time.
Jira measures SP based on: SP set in Field “StoryPoints” → At Sprint Start the measure of this task ist “Story Point commited”. When closing this Story at Sprints End, “Story Points completed”
should be the value of “completed from commited”.
I try this on a test environment and give you feedback.
Your Story Lifecycle is:
Team agree on SP: 10 for this Story
The issue is planned to a Sprint, at Sprint Start the value is “10”
After Sprint Start you adjust the SP Value to 50 and close the Story
In Jira Sprint Metrics/eazy BI should be “50” completed from “10” commited.
You want to Measure ONLY THE COMMITED SP at Closing. So 10=10, and the other 40 are just over it?
@jan-hendrik_woecht, i am trying to develop a more advanced KPI.
So normally if the team committed for 25 SP and delivered 25 SP everybody is happy. But i am expecting the team to deliver the content they committed to, not just the velocity.
So as the team mature i want to “trust” their plan more. I want them to complete “what” they committed to and do that with accurate estimates. Obviously, not achievable 100% in the real life, but would like to have a KPI that starts at 70% and shows improvement over time.
In the example i gave larger numbers at sprint closing to illustrate the result i was looking for. obviously i do not expect team to be so off we estimates.