Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hello,
I have a table that looks similar to this. I want to create a measure that returns the most recent value and I want it to be responsive with my date selection. Thank you.
Solved! Go to Solution.
You should be able to get there from here:
CategoriesLatest = SUMMARIZE(Categories,Categories[Product Category],"Transacation Date",MAX(Categories[Transaction Date]),"Value",CALCULATE(SUM(Categories[Value ($)]),FILTER(Categories,Categories[Transaction Date]=MAX(Categories[Transaction Date]))))
You would want to create a measure using MAX([Transaction Date]). Not entirely sure what you are going for here but you could you could use this in a CALCULATE for [Value ($)] for example.
My goal is to create measure maybe for a card that displays the total value. The value would be the total of last value of the stock (in the example on 104 for Gold Mining A, 57 for Invest Co and 122 for Airline A).
I also want to use the Transaction date column as a slicer that when I select July I'm only seeing the total of Gold Mining A and Invest Co.
Create a measure that extracts the latest Date for your context:
MaxDate = CALCULATE(MAX(Stock[Date]), ALLEXCEPT(Stock,Stock[Category]) )
and a measure that summarizes Value based on MaxDate:
SumStockValue = CALCULATE(SUM(Stock[Value]), FILTER(ALLSELECTED(Stock),Stock[Date] = [MaxDate]))
This assumes you have only one row per date and category. The measures will respect the context created by any selection (by slicer for example) based on [Date].
You should be able to get there from here:
CategoriesLatest = SUMMARIZE(Categories,Categories[Product Category],"Transacation Date",MAX(Categories[Transaction Date]),"Value",CALCULATE(SUM(Categories[Value ($)]),FILTER(Categories,Categories[Transaction Date]=MAX(Categories[Transaction Date]))))
Thank you.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!