Sum of Feature Points of Epics delivered per Product Increment

Hello all,

I tried to dig further, and below is what I changed. It does not show the correct final result - instead it shows me “yyyy-mm-dd hh:nn:ss” as a sum of my Feature points.
But surprisingly when I drill through the issues, the filtered list of features is correct.
So the question is: please could anyone help me to fix the mistake I have - so that it summed up what I really need (Feature Points for the filtered Epics)?

Sum(
  filter( Descendants([Issue].Currentmember, [Issue].[Issue]),
          (DateCompare( ([Measures].[Transition to status last date],
                        [Transition Status].[Ready to Release]),                     
                        [Fix Version].CurrentMember.Get('Release date')
                      ) <= 0 ) 
          OR
          (DateCompare( ([Measures].[Transition to status last date],
                        [Transition Status].[Done]),                     
                        [Fix Version].CurrentMember.Get('Release date')
                      ) <= 0 )                      
  ),
  --only one measure
  [Measures].[Feature Points due]
)
1 Like