NONEMPTY
Description:
This function is used to return the set of tuples that are not empty from a specified set, based on the cross product of the specified set with a second set.
Syntax:
NONEMPTY(set_expression1 [,set_expression2])
Return Type:
SET
Parameters:
Parameter | Description |
|---|---|
Set_Expression1 | It is a valid MDX expression that returns a set. |
Set_Expression2 | It is a valid MDX expression that returns a set. |
Example:
SELECT
[Measures].[Internet Order Quanlity] ON 0,
NONEMPTY([Customer].[Geography].[Country],[Measures].[Internet Order Quanlity])ON 1
FROM [AdventureWorksMF]