Hi All, I want to show top 5 categories with YTD and Total. I wan to show top categories based on Total not based on YTD.
Solved! Go to Solution.
You can have ytd like
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
overall Sales = CALCULATE(SUM(Sales[Sales Amount]),all('Date'))
On overall sales you can have rank or top N for category and filter
Top 5 category Rank = CALCULATE([overall Sales],TOPN(10,all(Item[category ]),[overall Sales],DESC),VALUES(Geography[Item category ]))
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/3...
You can have ytd like
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
overall Sales = CALCULATE(SUM(Sales[Sales Amount]),all('Date'))
On overall sales you can have rank or top N for category and filter
Top 5 category Rank = CALCULATE([overall Sales],TOPN(10,all(Item[category ]),[overall Sales],DESC),VALUES(Geography[Item category ]))
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/3...
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
389 | |
103 | |
65 | |
53 | |
49 |
User | Count |
---|---|
372 | |
120 | |
80 | |
68 | |
57 |