Hi,
Excel 2007 Pivot table shows incorrect numbers for Calculated Measure in the cube when I try to filter dimension members. If I select All dimension attribute members, I get correct numbers, but as soon I try to filter dimension attribute members, it returns incorrect numbers.
This is the MDX query I took from Pivot Table:
SELECT
{[Measures].[Overtime Hours]} DIMENSION PROPERTIES PARENT_UNIQUE_NAME ON COLUMNS ,
NON EMPTY Hierarchize({DrilldownLevel({[Project].[Budget Item Name].[All]})}) DIMENSION PROPERTIES PARENT_UNIQUE_NAME,
[Project].[Budget Item Name].[Budget Item Name].[Budget Item Stream] ON ROWS
FROM (SELECT ({[Project].[Budget Item Name].&[ADW]}) ON COLUMNS
FROM [iCorp])
WHERE ([Date].[Standard Month].[Month].&[201201]) CELL PROPERTIES VALUE, FORMAT_STRING, LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS
I have 3rd party reporting tool, which returns correct numbers. I see this simple MDX query there:
Select
Non Empty {[Measures].[Overtime Hours]} On Columns,
Non Empty {[Project].[Budget Item Name].&[ADW]} On Rows
From [iCorp]
Where ([Date].[Standard Month].[Month].&[201201]) Cell Properties VALUE
I cannot find direct answer why it happens within Pivot table and how to fix it.
Thank you in advance for your help.
Tomas