if you want calculate cummulative sum from the starting till date .
Then you need to use
SUM({NULL:[Date].[Hierarchy].currentmember},[Measures].[SIMID])
The above query gives from from starting SIMID availble to till the end of the date dimension but to restrict the cummulative value to only from start to latest date then use below query .
iif([Measures].[SIMID]>0,SUM({NULL:[Date].[Hierarchy].currentmember},[Measures].[SIMID]),null)
Comments
Post a Comment