If you need to apply %growth analysis across multiple measures, then you
can add a Time Series Dimension:
There is a Microsoft support article that explains this, using the
Foodmart 2000 Sales cube:
http://support.microsoft.com/default...;EN-US;q304118
Quote:
|
INF: How To Perform Time Series Calculations (Q304118)
|
...
Growth for a specific measure can be a calculated measure:
Quote:
|
With Member [Measures].[Unit Sales Growth]
|
as 'iif(IsEmpty(([Measures].[Unit Sales],[Time].PrevMember)), NULL,
([Measures].[Unit Sales]-([Measures].[Unit
Sales],[Time].PrevMember))/([Measures].[Unit
Sales],[Time].PrevMember))',
FORMAT_STRING = 'Percent'
Select
{[Measures].[Unit Sales],[Measures].[Unit Sales Growth]} on columns,
Descendants([Time].[1997],[Time].[Month],SELF_AND_BEFORE) on rows
from Sales
- Deepak
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!