RE: How to suppress All dimensions reporting from the following MDX query -
06-04-2004
, 12:51 PM
Another approach
SELEC
{[Gender].[Gender].Members} ON Rows
{ Descendants([Customers].[All Customers] , 1, self_and_after ) } on Column
FROM [Sales
where [Measures].[Unit sales
By incremeting 1 to 2 you can also eliminate Countries from the query and so on
If you only wanted the customer themselves (the [Name] level) then you can use
SELEC
{[Gender].[Gender].Members} ON Rows
{ [Customers].[Name].members } on Column
FROM [Sales
where [Measures].[Unit sales
HTH
Bria
www.geocities.com/brianaltmann/olap.htm |