It definitely sounds like NON EMPTY is the answer to your question...
Using FoodMart...
Run the following query:
SELECT { [Time].&[1997] } ON COLUMNS ,{ [Customers].[All
Customers].CHILDREN } ON ROWS FROM [Sales] WHERE ( [Measures].[Unit Sales] )
You will get Canada and Mexico listed with no Sales... And USA with X
amount...
Now run this query:
SELECT { [Time].&[1997] } ON COLUMNS ,NON EMPTY { [Customers].[All
Customers].CHILDREN } ON ROWS FROM [Sales] WHERE ( [Measures].[Unit Sales] )
You will get USA with X amount and no Canada or Mexico. Is this not what
you want?
"dave" <dave (AT) discussions (DOT) microsoft.com> wrote
Quote:
Well, the dimension is usernames. If the user has a value of nothing in
the measurements i do not want to display that username. How would i remove
|
or hide this username if the measurement value is zero when browsing the
cube?
Quote:
thank you for your quick response.
dave |