You can use the TopCount function to return the top n members from a set for a supplied measure.
The query below uses the TopCount function to return the top 10 products with the highest Sales Amount.
SELECT {[Measures].[Sales Amount]} ON 0,
TOPCOUNT([Product].[Product].[Product].Members, 10, [Measures].[Sales Amount]) ON 1
FROM [Adventure Works]