Hello! We have a case where the Sprint Story Points completed/resolved is empty and the Average Sprint Story Points completed measure (user defined) does not take into consideration this empty value.
The current formula is:
CASE WHEN NOT IsEmpty([Measures].[Sprint Story Points completed]) THEN
ConstantColumnValue(CatchException(
Avg(VisibleRowsSet(),
[Measures].[Cumulative Story Points resolved])
))
END
We have in the report 3 values for completed story points: empty, 27 and 15. The average shows 21 which is not correct and should be 14.
Can you help adding the correct code in the formula to also take into consideration the empty sprint?
I’ve tried multiple possibilities and every time the answer was still 21. The source issues are from Jira and they we’re imported correctly.
Thanks!!