Forum Discussion
Matrix table to show data until selected month filter only
- 3 years ago
bhavana097 , Ideally it should be month year coming from an independent date table
when it month year from date table
//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))when it only the month name and date table having month number too
//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Month no])
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Month no] <=_max))
bhavana097 , Ideally it should be month year coming from an independent date table
when it month year from date table
//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))
when it only the month name and date table having month number too
//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Month no])
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Month no] <=_max))