MDX query returns double values
I have a Sales Margin cube having Revenue,Cost,Margin as measures and customer,sales invoice,product group,time,area as dimensions.When i run the following MDX query, i get a value for revenue which is double the value i should get.I checked the fact table, value in the fact table for this measure is correct.Any ideas ?
select {[Measures].[Revenue]} on columns,
non empty [Sales Invoice].members on rows
from [Sales Margin]
Regards
If you check fact table there is only two ways to duplicate data. Did you check Sales invoice has not duplicate members? Try to full process your cube (what kind of proccessing has Sales Margin, take care of incremental proccess).
If these didn't work i'm sure you have defined 2 partitions for the cube, and they are the same.
I hope it helps you.