Forum Discussion
SBR1D
1 year agoHelper III
Line chart with running total
Hello I have a line chart dates from a Date table on the x-axis. I then have Culmative active engage on the Y Axis. I have a date filter on the visual which is set to Relative date is this month....
- 1 year ago
A quick a dirty way of dealing with this is create a measure that hides the calculation for days before today:
Hide values = If( selectedValue('Date'[Date]) <= Today(), [Culmative active engage], Blank())It would be better to work which of the 3 measures is returning the value regardless of filters. What is the definition of Measure1?
SamWiseOwl
1 year agoSuper User
A quick a dirty way of dealing with this is create a measure that hides the calculation for days before today:
Hide values = If( selectedValue('Date'[Date]) <= Today(), [Culmative active engage], Blank())
It would be better to work which of the 3 measures is returning the value regardless of filters. What is the definition of Measure1?
SBR1D
1 year agoHelper III
that works!
Thank you