Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Issue with Matrix header dates

Hi Everyone,   I was hoping someone could help me with a part of the formula to get me to my end goal.   Issue:- Im facing issue with Matrix header dates. FYI,Please find the below attached figur...
  • amitchandak's avatar
    3 years ago

    Anonymous , You can use after slicer

     

    Or you can have date slicer of an independent date table and then have measure like

     

    //Date1 is independent Date table, Date is joined with Table
    new measure =
    var _max = maxx(allselected(Date1),Date1[Date])
    return
    calculate( sum(Table[Value]), filter('Date', 'Date'[Date] > _max))

     

    Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI