Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Runs the Multidimensional Expressions (MDX) Filter function on a set.
Namespace: Microsoft.AnalysisServices.AdomdServer
Assembly: msmgdsrv (in msmgdsrv.dll)
Syntax
'Declaration
Public Shared Function Filter ( _
set As Set, _
expression As Expression _
) As Set
'Usage
Dim set As Set
Dim expression As Expression
Dim returnValue As Set
returnValue = MDX.Filter(set, expression)
public static Set Filter(
Set set,
Expression expression
)
public:
static Set^ Filter(
Set^ set,
Expression^ expression
)
static member Filter :
set:Set *
expression:Expression -> Set
public static function Filter(
set : Set,
expression : Expression
) : Set
Parameter
- set
Typ: Microsoft.AnalysisServices.AdomdServer.Set
The set that contains the members to be evaluated.
- expression
Typ: Microsoft.AnalysisServices.AdomdServer.Expression
The Expression to be used to evaluate on the set.
Rückgabewert
Typ: Microsoft.AnalysisServices.AdomdServer.Set
A set that contains the tuples that match the conditions that are defined by expression.
Hinweise
If no tuples match the conditions, an empty set is returned.