Forum Discussion
Syndicate_Admin
Administrator
4 years agoFiltro MAT, YTD, QTR, MTH
Good morning, everyone: Dear please I would like if you help in something, I need a table that between two dates can show me all the dates according to the filter I choose, it can be the mobile y...
amitchandak
Super User
4 years agoSyndicate_Admin , if you select a date and need more than that, you need an independent date table
example 12 month
//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = eomonth(_max, -12) +1
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Date] >=_min && 'Date'[Date] <=_max))
Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI