I have the following:
- [D project]: a dimension that contains projects attributes
- [D services]: a dimension that contains services attributes. Each service has a unite price. One or more services can be done in a project.
- [F TC]: a fact table contains the number of hours spent doing a service under a project.
I've created a calculated measure and named it [SOR COST]. This calculated measure multiplies[Service Unit Price] attribute from [D services] with[No. Hr.s] from [F TC] to get the cost of service. The expression of this calculated measure is:
sum( [D Services].[Service Unit Price].children,[D Services].[Service Unit Price].membervalue*([measures].[No. Hr.s]))
This calculated measure usually works as expected, for example:
The problem is when I select to show [D Services].[Service Unit Price] in the above excel, strangely the Service cost disappears, as follows:
As you can see, even though the total of the SOR Cost is still there the detailsdisappear, what is happening ?!! and how can i fix this ?
Please do not suggest to include the unite price in the fact table, i need to know the reason of the above and how to fix it