Forum Discussion
Dynamically filtering a KPI visual by current financial year?
- 4 years ago
Anonymous , Try like
Measure =
var _max = var _max = maxx(allselected('Date'),'Date'[Date]) // OR// eomonth(Today(),0)
Var _maxFY = maxx(filter(allselected('Date'),'Date'[Date] = _max), 'Date'[FY])
return
calculate(sum(Table[value]), filter(date, Date[FY] =_maxFY))You can also trywih FY end date
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"03/31"))
Anonymous , Try like
Measure =
var _max = var _max = maxx(allselected('Date'),'Date'[Date]) // OR// eomonth(Today(),0)
Var _maxFY = maxx(filter(allselected('Date'),'Date'[Date] = _max), 'Date'[FY])
return
calculate(sum(Table[value]), filter(date, Date[FY] =_maxFY))
You can also trywih FY end date
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"03/31"))