Udostępnij za pośrednictwem


Ascendants (MDX)

Zwraca zestaw ascendants określonego elementu członkowskiego, w tym sam element członkowski.

Ascendants(Member_Expression)

Argumenty

  • Member_Expression
    Prawidłowe wyrażenie Multidimensional Expressions (MDX), które zwraca element członkowski.

Remarks

The Ascendants funkcja performs a post-order traversal of the hierarchy for the specified element członkowski, and then returns all ascendant members related to the element członkowski, including itself, in a zestaw. W przeciwieństwie do są to element nadrzędny funkcja, która zwraca wartość określonego składnika ascendant lub element nadrzędny na określonym poziomie.

Przykłady

W poniższym przykładzie zwraca liczbę zamówień sprzedawcy [Sales Territory].[Northwest] element członkowski i wszystkie ascendants tego element członkowski członkowski z Adventure Works moduł.The Ascendants funkcja constructs the zestaw that includes the [Sales Territory].[Northwest] element członkowski and its ascendants for the ROWS oś.

SELECT
   Measures.[Reseller Order Count] ON COLUMNS,
   Order(
      Ascendants(
         [Sales Territory].[Northwest]
      ),
      DESC
   ) ON ROWS
FROM
   [Adventure Works]