Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Dynamic Calculation of Average

I want to create a table displaying the last moving 3-month (Oct-Nov-Dec 2022) income statement object, e.g. Cost of Sales.  I want to display the following:   -  4th column --> the average of the ...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Thanks...after checking the relationships and DAX formula, dynamic calculation of the 3-months data are now working--> 

    Three-months rolling average = -(CALCULATE(SUM('FS_Conso_TB_2022 (2)'[Adjusted Balance]),DATESINPERIOD('FS_Conso_TB_2022 (2)'[Month],LASTDATE('FS_Conso_TB_2022 (2)'[Month]),-3,MONTH))/3)/1000000
     
    The relationship [Month} should be one-to-one so the slicer will work as well when selected which month to display.