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
jeanso
Frequent Visitor

analyze last filtered data

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

 

jeanso_0-1657741514457.png

 

1 REPLY 1
amitchandak
Super User
Super User

@jeanso , 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) )

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