Forum Discussion
khaycock
Helper I
6 years agoApplying Year filter to Running Total
I'm struggling to get my running total to only include data from this fiscal year. I have data from previous years that I don't want to include in this running total but the following DAX only filter...
khaycock
Helper I
6 years agoThis works perfectly thank you! Is there anyway to keep the months in the future blank for CYTD rather than show the same figure?
jthomson
Solution Sage
6 years agoYou could try taking the formula you have now and use conditional logic to compare the date in your date table to today, something like:
NewMeasure = if('Date'[Date] > today(),blank(),[YTD Sales])
- khaycock6 years ago
Helper I
The IF statement on this measure doesn't let me use the Calendar Date field, it only lets me pick an existing Measure..