Hi everybody,
I have a named set which gather several measures.
I would like to query this Named to get only the result for one measure.
For instance:
Named Set [Test]
is defined like this:
{
[Measures].[Measure1],
[Measures].[Measure2],
[Measures].[Measure3]
}
I usually query my Named set with a query like:
SELECT
{[DIM1].[DIM1BDC].ALLMEMBERS *
{[TIME].[YEAR].CHILDREN} } ON COLUMNS,
{[Test]} ON ROWS
FROM [CUBE1]
WHERE {[DIM1].[DIM1].&[209490]
I would like to get something like:
SELECT
{[DIM1].[DIM1BDC].ALLMEMBERS *
{[TIME].[YEAR].CHILDREN} } ON COLUMNS,
{[Test].[Measures].[Measure1]} ON ROWS
FROM [CUBE1]
WHERE {[DIM1].[DIM1].&[209490]