I need to calculate estimation Accuracy and do this with the following calculated Member:
CASE WHEN
[Measures].[Hours spent] IS EMPTY
OR [Measures].[Hours spent] <= 0
THEN
0
ELSE
([Measures].[Original estimated hours] - [Measures].[Hours spent])
/ [Measures].[Hours spent] * 100
END
The problem is, how do I restrict the evaluation to Issues only where the Status is Closed or Resolved?
If all status values are used, work log is not finished and calculation gives wrong values.
Any hints on this?
Thanks Max