Hi Karen,
From your earlier posts, there is also a [Plant] dimension; and measures
associated with a [Plant] are related to a [Currency] or [Unit], based
on its location. However, this location relationship is only represented
in the fact table, not explicitly in the [Plant] dimension.
When reporting at the individual Plant grnaularity, the associated
Currency and Unit would have to be inferred from measures - which would
not work when rolling up Plants:
[Measures].[CAmount]:
Quote:
|
Format([Measures].[Amount],
|
"0.00" + " "
+ Filter([Currency].[Currency].Members,
Not IsEmpty([Measures].[Amount])).Item(0).Item(0).Name
+ " ")
[Measures].[CQty]:
"0.00" + " "
+ Filter([Unit].[Unit].Members,
Not IsEmpty([Measures].[Qty])).Item(0).Item(0).Name
+ " ")
- Deepak
Deepak Puri
Microsoft MVP - SQL Server
*** Sent via Developersdex http://www.developersdex.com ***