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

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)

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.

Top Solution Authors