Forum Discussion
Jcramb
7 years agoFrequent Visitor
Running Total Stop on Today
Im trying to make a running total that stops calculating on today. I cant figure out how to modify my Dax to make it work. Below is my running total. How to modify to make it work? I the result s...
- 7 years agoYou can try using a new measure with an IF function:
IF ( MAX( datetable [date] ) > TODAY(), BLANK(), [Your cumulative measure] )
PaulDBrown
7 years agoCommunity Champion
You can try using a new measure with an IF function:
IF ( MAX( datetable [date] ) > TODAY(), BLANK(), [Your cumulative measure] )
IF ( MAX( datetable [date] ) > TODAY(), BLANK(), [Your cumulative measure] )