I have a query as such
DRILLTHROUGH
SELECT NON EMPTY { [Measures].[#] } ON COLUMNS,
NON EMPTY
{
( [Location].[Name].[Name].&[Test Location] )
} ON ROWS
FROM (
SELECT (
{ [v Item].[Item].&[Option 1], [v Item].[Item].&[Option 2], [v Item].[Item].&[Option 3] } ) ON 0
FROM [TestCube]
)
Without the Drillthrough
the query returns the correct results/cell; however, with the drillthrough the subcube
SELECT (
{ [v Item].[Item].&[Option 1], [v Item].[Item].&[Option 2], [v Item].[Item].&[Option 3] } ) ON 0
FROM [TestCube]
is completely ignored. What am I doing wrong here?