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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
manoj_0911
Post Patron
Post Patron

Combining Top/Bottom 10 Stores by Sales in a Single Chart in Power BI

Hello Power BI Community,

I'm currently working on a sales analysis project in Power BI and I'm looking to combine the top and bottom 10 stores by sales into a single chart for comparison purposes.

I've tried various approaches, including using filters and measures, but haven't been able to achieve the desired result. Can anyone provide guidance on how to effectively combine the top and bottom 10 stores by sales into a single chart in Power BI Desktop?

Any insights, techniques, or Power BI features that can help accomplish this task would be greatly appreciated.

Thank you for your assistance!

Best regards,
Manoj Prabhakar

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@manoj_0911 , Add Top and bottom measure together

 

Top Bottom 10 stores = CALCULATE([Measure],TOPN(10,all(Table[Store]),[Measure],DESC),VALUES(Table[Store])) + CALCULATE([Measure],TOPN(10,all(Table[Store]),[Measure],asc),VALUES(Table[Store]))

 

Dynamic TOPN using TOPN/Window and Numeric parameter: https://youtu.be/vm2mdEioQPQ

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@manoj_0911 , Add Top and bottom measure together

 

Top Bottom 10 stores = CALCULATE([Measure],TOPN(10,all(Table[Store]),[Measure],DESC),VALUES(Table[Store])) + CALCULATE([Measure],TOPN(10,all(Table[Store]),[Measure],asc),VALUES(Table[Store]))

 

Dynamic TOPN using TOPN/Window and Numeric parameter: https://youtu.be/vm2mdEioQPQ

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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