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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
joshua1990
Post Prodigy
Post Prodigy

TOP 10 Sales for current week

I have 3 Tables in the data model that are linked.

The first one is a simple calendar table:

Year-WeekWeek Offset
2021-46-1
2021-470

This table shows me in the column [Week Offset] the current week at value '0'.

 

Then I have an attribute table that shows me the Department for each Article.

DepartmentArticle
AAA1
BBB1

 

And then I have a sales table that shows me sales for each article for each store:

ArticleStoreSalesYear-Week
A1AA-015502021-47
A1AA-024002021-47

 

Now I would like to get a matrix that shows me the TOP 10 Sales overall for the current week:

ArticleStoreSales
A1AA-01550
A1AA-02400

 

The TOP 10 sales should consider just the sum on the article level, not on the Store level. But in the matrix, the result should be shown at the store level.

How would you do that?

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@joshua1990 , Created a measure like M1 and try to create Rank on that

 


M1= calculate(sum(Table[sales]), allexcept(Table, Table[Article]))

 

Rank = rankx(allselected(Table[Article]), [M1],,desc, dense)

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

@joshua1990 , Created a measure like M1 and try to create Rank on that

 


M1= calculate(sum(Table[sales]), allexcept(Table, Table[Article]))

 

Rank = rankx(allselected(Table[Article]), [M1],,desc, dense)

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

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

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.