I'm not very experienced in OLAP Cube + MDX, and I'm having a hard time trying to use twice the same measure in a cube.
Let's say that we have 3 Dimensions: D_DATE, D_USER, D_TYPE_OF_SALE_TARGET and 3 tables of Fact: F_SALE, F_MEETING, F_SALE_TARGET
F_SALEis linked toD_USER(who make the sale) andD_DATE(when)F_SALE_TARGETis linked toD_USER,D_DATE,D_TYPE_OF_SALE_TARGET(meaning: user has to reach various goals/targets for a given month).
I can browse my cube:
- Rows = Date * User
- Cols = Number of sale, Total amount of sale + the value of 1 target (in the
WHEREclause, I filter on[Dim TYPE SALE TARGET].[Code].&[code.numberOfSales])
How can I add other columns for other targets? As all the targets are in the same table, I don't see how to add a second measure from [Measures].[Value - F_SALE_TARGET] linked to a different code, ie. [Dim TYPE SALE TARGET].[Code].&[code.amountOfSale].