Hi , I am trying to calculate the Story points committed - story point that spillover from previous sprint.
would want to get 2.50 in “spills from prev sprint” column in sprint 8
Hi , I am trying to calculate the Story points committed - story point that spillover from previous sprint.
Hi,
There is a similar post for counting the spill-over issues:
We can replace the “1” with the story points count:
Sum(
Filter(
DescendantsSet([Issue].CurrentHierarchyMember, [Issue].[Issue]),
--property includes multiple IDs - looking for the comma
CoalesceEmpty([Issue].CurrentHierarchyMember.Get('Sprint IDs'),'') MATCHES '.*,.*'
AND
--property contains the ID of the current sprint
CoalesceEmpty([Issue].CurrentHierarchyMember.Get('Sprint IDs'),'')
MATCHES
'(^|.*,)'||Cast([Sprint].CurrentHierarchyMember.Key AS STRING)||'(,.*|$)'),
[Measures].[Issue story points]
)
Kindly,
Janis, eazyBI support