Forum Discussion
peterhui50
4 years agoHelper III
Optimize a measure?
Is there a way to optimize this measure? Items_Sold__Rolling_12_Months__Last_Year = CALCULATE ([Items Sold], SAMEPERIODLASTYEAR ( DATESINPERIOD ( DATE_TABLE[Date], LASTDATE ( DATE_TABLE[Date...
- 4 years ago
I looked at this before Anonymous posted a reply...
Try this
ItemsSoldRolling12MonthsLastYear = CALCULATE( [ItemsSold], PREVIOUSYEAR(DATE_TABLE[Date])) )This requires you have a date table and that it's marked appropriately. Hope this helps!
Anonymous
4 years agoNot applicable
Hi peterhui50
How about filtering the Year?
CALCULATE ([Items Sold],FILTER(DATE_TABLE, DATE_TABLE[Year]=YEAR(LASTDATE(DATE_TABLE[Date]))-1))