Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DeepDive
Helper IV
Helper IV

Category wise YTD of Top 5.... Top 5 based on Total

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.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@DeepDive ,

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...

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@DeepDive ,

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...

Thanks, @amitchandak, very thanks for this information.

 Really helpful post.

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.