Forum Discussion
Anonymous
7 years agoNot applicable
TopN
Good afternoon, I need to show the top 20 sales. Thanks for the help
- 7 years ago
This is how: https://www.youtube.com/watch?v=nmsf7Cbx3JM
v-jiascu-msft
Microsoft Employee
7 years agoHi Anonymous,
Does this topic try to solve the same problem?
You also can create a measure with the function RANKX. Something like below.
rank =
RANKX (
ALL ( DimProduct[ColorName] ),
CALCULATE ( SUM ( FactSales[SalesQuantity] ) )
)
Best Regards,
Dale