Forum Discussion
1001
Resolver II
2 years agoA DAX Calculation Question
Hi All, I have a column of values (production forecast) and a date table with the column, Week Begining applied to the filters Pane. I've filtered out any zero values and have Average Forecast = ...
- 2 years ago
You can try these 2 new measures
Total Forecast by Week = CALCULATE(SUM(Budget[Forecast]), ALLEXCEPT(Budget, Date[Week Beginning]))
Average Weekly Volume = AVERAGEX(VALUES(Date[Week Beginning]), [Total Forecast by Week])
amustafa
Solution Sage
2 years agoYou can try these 2 new measures
Total Forecast by Week = CALCULATE(SUM(Budget[Forecast]), ALLEXCEPT(Budget, Date[Week Beginning]))
Average Weekly Volume = AVERAGEX(VALUES(Date[Week Beginning]), [Total Forecast by Week])