--- title: "DrilldownLevelBottom (MDX) | Microsoft Docs" ms.date: 06/04/2018 ms.prod: sql ms.technology: analysis-services ms.custom: mdx ms.topic: reference ms.author: owend ms.reviewer: owend author: minewiskan --- # DrilldownLevelBottom (MDX) Drills down the bottommost members of a set, at a specified level, to one level below. ## Syntax ``` DrilldownLevelBottom(Set_Expression, Count [,[] [,[][,INCLUDE_CALC_MEMBERS]]]) ``` ## Arguments *Set_Expression* A valid Multidimensional Expressions (MDX) expression that returns a set. *Count* A valid numeric expression that specifies the number of tuples to be returned. *Level_Expression* A valid Multidimensional Expressions (MDX) expression that returns a level. *Numeric_Expression* Optional. A valid numeric expression that is typically a Multidimensional Expressions (MDX) expression of cell coordinates that return a number. *Include_Calc_Members* Optional. A keyword that adds calculated members to drilldown results. ## Remarks If a numeric expression is specified, the **DrilldownLevelBottom** function sorts, in ascending order, the children of each member in the specified set, according to the specified value, as evaluated over the set of child members. If a numeric expression is not specified, the function sorts, in ascending order, the children of each member in the specified set, according to the values of the cells represented by the set of child members, as determined by the query context; This behavior is similar to the BottomCount and Tail (MDX) functions which return a set of members in natural order, without any sorting. After sorting, the **DrilldownLevelBottom** function returns a set that contains the parent members and the number of child members, specified in *Count*, with the lowest value. The **DrilldownLevelBottom** function is similar to the [DrilldownLevel](../mdx/drilldownlevel-mdx.md) function, but instead of including all children for each member at the specified level, the **DrilldownLevelBottom** function returns the bottom-most number of child members. Querying the XMLA property MdpropMdxDrillFunctions enables you to verify the level of support that the server provides for the drilling functions; see [Supported XMLA Properties (XMLA)](https://docs.microsoft.com/bi-reference/xmla/xml-elements-properties/propertylist-element-supported-xmla-properties) for details. ## Examples The following example returns the bottom three children of the Product Category level, based on the default measure. In the Adventure Works sample cube, the bottom three children for Accessories are Tires and Tubes, Pumps, and Panniers. In Management Studio, in the MDX query window, you can navigate to Products | Product Categories | Members | All Products | Accessories to view the complete list. You can increase the Count argument to return more members. ``` SELECT DrilldownLevelBottom ([Product].[Product Categories].children, 3, [Product].[Product Categories].[Category]) ON 0 FROM [Adventure Works] ``` The next example illustrates using the **include_calc_members** flag, used to include calculated members in the drill down level. The measure [Reseller Order Count] is added to the **DrilldownLevelBottom** statement to ensure that the results are sorted by that measure. To see the calculated member, it's necessary to increase Count to at least 9. ``` WITH MEMBER [Product].[Product Categories].[Category].&[3].[Premium Clothes] AS [Product].[Product Categories].[Subcategory].&[18] + [Product].[Product Categories].[Subcategory].&[21] SELECT [Measures].[Reseller Order Count] ON 0, DRILLDOWNLEVELBOTTOM( [Product].[Product Categories].children , 9, [Product].[Product Categories].[Category] , [Measures].[Reseller Order Count], INCLUDE_CALC_MEMBERS ) ON 1 FROM [Adventure Works] ``` ## See Also [DrilldownLevel (MDX)](../mdx/drilldownlevel-mdx.md) [MDX Function Reference (MDX)](../mdx/mdx-function-reference-mdx.md)