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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
If I filter for example 04/14/2022 to 04/17/2022 it should show me the last consumption on 04/15/2022 and the penultimate on 10/01/2022 but when performing such a filter it does not show the penultimate application of 10/ 01/2022
@Anonymous , Try lastnonblankvalue
lastnonblankvalu(Table[Date], sum(Values))
or
Measure =
var _max = maxx(allselected(Table), Table[Date]) //Assume joined date table is giving slicer values
return
calculate(sum(Table[Value]). Filter('Date', 'Date'[Date] =_max) )