Forum Discussion
Anonymous
4 years agoNot applicable
Running Total Measure with Filter
Hey guys, I've got the following Measure: Visits My Page = CALCULATE( DISTINCTCOUNT('All Page Visits'[VISIT_ID]), FILTER('All Page Visits','All Page Visits'[PAGE_URL]="https://my.page.nl/l...
- 4 years ago
yes, you could do something like
Running Total = var maxDate = MAX('Date'[Date]) return CALCULATE( [Visits My Page], REMOVEFILTERS( 'Date'), 'Date'[Date] <= maxDate)
Anonymous
4 years agoNot applicable
Wow Johnt75,
This helped me a lot. I really need to learn how to work with variables I guess...
Thanks a lot.