Calculate Story Points committed MINUS story points that spillover from Previous Sprints

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