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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Anonymous
Not applicable

Rank based on latest date

Hello, 

 

I have a data set with 3 weeks of sales data for products. I need to rank the products by the latest week's sales only and I still need to be able to display the sales totals for the other weeks as well. 

 

Below is a simplified version of the data set. I want to rank the products based on the highlighted info. 

 

daniellerp_0-1601301537323.png

 

Here's the output I'm trying to get to: 

daniellerp_1-1601301726362.png

 

Any suggestions would be greatly appreciated!

 

 

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , Create a measure like this and create Rank on that. Better to separate date table

 

 

Last Week =
var _max = maxX(allselcted('Date'), 'Date'[Week Rank])
return
CALCULATE(sum('order'[Qty]), FILTER(('Date'),'Date'[Week Rank]=_max))

 

or

Last Week =
var _max = maxX(allselcted('Date'), 'Date'[Week Rank])
return
CALCULATE(sum('order'[Qty]), FILTER(ALLselected('Date'),'Date'[Week Rank]=_max))

 

or

Last Week = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))

 

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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