I have a measure that checks how many items are done during a specific release according to the start date of the release and the release end date.
It is working fine but it takes around 20 seconds for the report to show up.
I want to use advance settings or JS to improve performance.
This is the measure:
NonZero(Sum(
Filter(
– iterate through set of issues
Descendants([Issue].CurrentHierarchyMember,[Issue].[Issue]),
– apply filter criteria to each issue
DateBetween([Measures].[Issue resolution date], [Measures].[Version start date()], [Measures].[Version release date()])
AND
[Measures].[Issue status] = “Done”
),
– numeric expression - the sum of relevant issues
[Measures].[Issues created]
))
Checking the date for every issue takes a lot of time. Can someone please help me create a new custom field (only in Eazybi) that will hold in what release the issue was resolved (based on the release dates).
Thanks,
Ofer