I have created an SSAS cube in SQL 2005 and included calculated members for MTD, QTD as well as YTD.
With QTD measure I actually want to get the total over all 3 months of the quarter, not just the up-to-date value.
Now when I browse the cube itself the number for the QTD measure is correct (total of all 3 months of the quarter) irrespective of what month of the quater do I pass as a parameter, but the report which pulls data from the cube shows the up-to-date value not the total of all 3 months. i.e. my report gives me the correct value only when I select the last month of the quarter. My report displays Sales targets (Committments) by the way. I wonder why is the report showing different values for this calculated field as compared to the cube? Below is the expression I used to calculate the total over all months of the quarter.
Sum(QTD([DimTime].[Hierarchy].Parent),[Measures].[Commitment])
Please help.
Thanks, Lungisa Dotye