Forum Discussion
Line chart with running total
- 2 years 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?
Hi SBR1D
If a measure CAN show data it will.
So a simple measure like:
Basic Measure = 1
When in your visual will show for every single date available.
- SBR1D2 years agoHelper IIIThanks, so it cannot be done?
- SamWiseOwl2 years 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?
- SBR1D2 years agoHelper III
that works!
Thank you