Forum Discussion

DavidB023's avatar
DavidB023
Helper III
8 years ago
Solved

Last date value

Hi everybody !   I want to show a last date value without a slicer, so I try function like firstnonblank and lastnonblank but nothing worked.. Is it possible or should I put a date slicer in order...
  • Greg_Deckler's avatar
    Greg_Deckler
    8 years ago

    That is why it is important to post sample data to clarify. Try this:

     

    Measure = 
    VAR maxDate = MAX('Table'[Date])
    
    RETURN
    MAXX(FILTER('Table',[Date]=maxDate),[Column])

    Something like that.