Forum Discussion
purpletiger
7 years agoFrequent Visitor
Rolling 12 Month Sum with filter
Hello! I am working on a Rolling 12 month performance which includes actuals up to today (-15) and the budget going forward. Using datesinbetween works great until I only want to display one year (2...
- 7 years ago
Hi purpletiger ,
It looks like parentheses causes the error. Please try this one.
RollingBase = CALCULATE ( [Amt Base], FILTER ( ALL ( DATET ), DATET[Date] <= MAX ( DATET[Date] ) && DATET[Date] >= ( TODAY () - 15 ) ) )
Best regards,
Yuliana Gu
v-yulgu-msft
Microsoft Employee
7 years agoHi purpletiger ,
It looks like parentheses causes the error. Please try this one.
RollingBase = CALCULATE ( [Amt Base], FILTER ( ALL ( DATET ), DATET[Date] <= MAX ( DATET[Date] ) && DATET[Date] >= ( TODAY () - 15 ) ) )
Best regards,
Yuliana Gu
purpletiger
7 years agoFrequent Visitor
THANK YOU! So simple, I was thrown off by the error message.