Summarize custom property on Project level

Hi, @PeterA

The calculation formula cumulatively counts all “Issues created” in project level, while, in issues level, it counts as “1” issues having value in measure [Measures].[DELIVERED (Actual I5 Delivery) COUNT]>0.

In the given formula, for project level, substitute [Measures].[Issues created] with the expression that counts the issues with value:

Count(
  Filter(
    Descendants([Issue]CurrentMember, [Issue].[Issue]),
    [Measures].[DELIVERED (Actual I5 Delivery) COUNT]>0
  )
)

If the calculation gets too slow (as it iterates through issues and cumulatively counts values) or the results are not as expecte, please, export the report definition and send it to support@eazybi.com for further analysis.

Ilze
support@eazybi.com