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?
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?
Oh ive labelled the measure wrong in the first post , here you go..
meausre1 = CALCULATE(COUNTX('Table','Table'[data_to_count]))