Za pomocą funkcji logicznych
funkcja logicznych wykonuje operacja logicznego i porównań na obiekty i wyrażeń i zwraca logiczny.Funkcje logiczne są istotne w wyrażeniach MDX (Multidimensional) do ustalenia położenia element członkowski.
Najczęściej używanych funkcji logicznych IsEmpty Funkcja. Aby uzyskać więcej informacji na temat korzystania z IsEmpty funkcja, zobacz Praca z wartości puste.
Następująca kwerenda pokazuje, jak użyć IsLeaf i IsAncestor funkcje:
WITH
//Returns true if the CurrentMember on Calendar is a leaf member, ie it has no children
MEMBER MEASURES.[IsLeafDemo] AS IsLeaf([Date].[Calendar].CurrentMember)
//Returns true if the CurrentMember on Calendar is an Ancestor of July 1st 2001
MEMBER MEASURES.[IsAncestorDemo] AS IsAncestor([Date].[Calendar].CurrentMember, [Date].[Calendar].[Date].&[1])
SELECT{MEASURES.[IsLeafDemo],MEASURES.[IsAncestorDemo] } ON 0,
[Date].[Calendar].MEMBERS ON 1
FROM [Adventure Works]