Forum Discussion
cmcgo3
2 years agoHelper II
Need Cumulative Measure
I am trying to create a new measure that will calculate a cumulative total in either a table or matrix as well as give correct total in a card. In the attached pbix file the cumulative total for thi...
- Anonymous2 years ago
Give this a try:
Cumulative = var endDate = MAX('Table1'[Day of Week ]) RETURN CALCULATE( [Verification counter], ALL('Table1'[Day of Week ]), 'Table1'[Day of Week ] <= endDate ) - 2 years ago
THANK YOU BOTH! This works perfectly!!! What a great resource this platform is!!
Anonymous
2 years agoNot applicable
Give this a try:
Cumulative = var endDate = MAX('Table1'[Day of Week ])
RETURN
CALCULATE(
[Verification counter],
ALL('Table1'[Day of Week ]),
'Table1'[Day of Week ] <= endDate
)