Forum Discussion
Rolling Sum for Max(Year)-1
- Anonymous9 years ago
Hi R_,
--> Create a date table that has continuos dates.
--.>Create a measure that calculates the sum of sales or order as per your scenario
--> Rolling sum LY--> Calculate(Sales measure,sameperiodlastyear(datetable(dateColumn)))
Regards,
Hemant
Hi R_,
--> Create a date table that has continuos dates.
--.>Create a measure that calculates the sum of sales or order as per your scenario
--> Rolling sum LY--> Calculate(Sales measure,sameperiodlastyear(datetable(dateColumn)))
Regards,
Hemant
- SivaMani9 years ago
Resident Rockstar
Hi R_,
Create a measure like below mentioned formula,
Rolling SUM =
CALCULATE(
SUM(CV_RETAIL_SALES_UNIV[Cost_Amount]),
FILTER(
ALL(CV_RETAIL_SALES_UNIV[Date]),
YEAR(CV_RETAIL_SALES_UNIV[Date])<=YEAR(MAX(CV_RETAIL_SALES_UNIV[Date]))-1
)
)Regards,
Siva
- R_8 years agoRegular Visitor
Thanks but what if my finance year start from April-March..? How to calculate rolling year between that.?