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...
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])
khaycock
Helper I
6 years agoThe IF statement on this measure doesn't let me use the Calendar Date field, it only lets me pick an existing Measure..