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
alexei7
Continued Contributor
Continued Contributor

Measure to select most recent value of a dimension, based on the date filtered

I'm struggling to come up with the DAX to product a measure which will give me the "most recent" status for a product.
The report contains a date slicer, so the "most recent date" for the status would be dependent on the date range the user had filtered on. 

 

My source data is one large table containing the following fields:

ProductID
ProductName
Location
Date
Status
ProductCategory
ProductAbbreviation
Many other dimensions which should be ignored for this report...

 

My desired output is a table with the following:

ProductID
ProductName
Location
Most recent status - new measure

 

Notes

- Data is added/updated monthly
- Products can be at more than one location
- Users will be able to filter on the date

 

 

The pbix model with some fake data in it is here:

https://mega.nz/file/ao1n3STS#uDqZD0TH-cG5-8_YlWu5PZSS0k6PVaaikXUtb4KSJxg

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@alexei7 , Add this

lastnonblankvalue(Table[Date], max(Table[Status]))

 

or


calculate(max(Table[Status]), filter(Table, Table[Date] = calculate(max(Table[Date]), allexcept(Table, Table[Product ID]))))

or

calculate(max(Table[Status]), filter(Table, Table[Date] = calculate(max(Table[Date]), allexcept(Table, Table[Product ID], Table[Location]))))

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@alexei7 , Add this

lastnonblankvalue(Table[Date], max(Table[Status]))

 

or


calculate(max(Table[Status]), filter(Table, Table[Date] = calculate(max(Table[Date]), allexcept(Table, Table[Product ID]))))

or

calculate(max(Table[Status]), filter(Table, Table[Date] = calculate(max(Table[Date]), allexcept(Table, Table[Product ID], Table[Location]))))

 

alexei7
Continued Contributor
Continued Contributor

Thanks for your help - worked perfectly.

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.