Forum Discussion
Issue with Matrix header dates
- 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
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