Forum Discussion
Anonymous
6 years agoNot applicable
Cumulative graph value on specific date
Hi guys. Is it possible to get a value for a specific date from a cumulative graph and put that in a card or taco visual for example? I cannot currently do it as the measure for the cumulative gr...
- 6 years ago
Sure...
Measure =
VAR DateYouWant = DATE(2020,5,1) // Or...a MAX() of any table, you chooseRETURN
CALCULATE( [measureyouwant] , FILTER( ALL( CalendarTable ) , CalendarTable[Date] <= DateYouWant) )
Anonymous
6 years agoNot applicable
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490