Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
How can i get the Top 10 customer sales.
Solved! Go to Solution.
Hi Arul,
1. First u need to create one measure
Sum of sales = SUM(Sales)
2. Second for Rank
Rank = RANKX(Allselected(Customer),"Sum of Sales",,Desc,Dense)
3. Apply this rank in Visual Filter from that u can choose Top N Values
Hope it will solve your prob
Hi Arul,
1. First u need to create one measure
Sum of sales = SUM(Sales)
2. Second for Rank
Rank = RANKX(Allselected(Customer),"Sum of Sales",,Desc,Dense)
3. Apply this rank in Visual Filter from that u can choose Top N Values
Hope it will solve your prob
I am new to the Power BI
It works well, but my total value is wrong. Its shwing total value for the entire month.
I want total value for top 10 customer.
How can i add top 10 sales values. I have used below formula . Still it's not working
Top 10 Turnover = if (ISFILTERED(V_Sale_TurnOver_BI[CustomerName]), if([Rank]<=10, sum(V_Sale_TurnOver_BI[Turnover]),BLANK()), CALCULATE(SUM(V_Sale_TurnOver_BI[Turnover]),TOPN(10,VALUES(V_Sale_TurnOver_BI[CustomerName]),sum((V_Sale_TurnOver_BI[Turnover]) ) ) ))
Please advise
great!!!!!!!!!
Its help me to choose Top N Values
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.