I have this simple MDX query that brings back all elements under the customer hierarchy dimension (Customer Description, Customer Business, Customer ID). The query executes fine but I need to exclude the rows that return #null. I have tried using Non Empty but it is not working.
WITH
MEMBER [Measures].[Label] AS [Customer Hierarchy].CURRENTMEMBER
MEMBER [Measures].[UniqueName] AS [Customer Hierarchy].[Customer ID].CURRENTMEMBER.UNIQUENAME
SELECT
NON EMPTY {
[Measures].[Label],
[Measures].[UniqueName]
} ON COLUMNS
, NON EMPTY {[Customer Hierarchy].[Customer ID].ALLMEMBERS } ON ROWS
FROM [SUMMARY]
Query Results (Customer, Customer Description, Customer ID)