Forum Discussion

databot_kd's avatar
databot_kd
Icon for Helper III rankHelper III
2 years ago
Solved

Rolling Total Over Months in a Matrix table

Hi Community,  I am trying to create a DAX measure to calculate the rolling/running total over  month in a matrix table.  See screenshot below Ahmedx  ced_f  Thanks in advanc...
  • sergej_og's avatar
    2 years ago

    Hey databot_kd ,
    if you want to calculate running total within a year you can use TOTALYTD formula.
    Like:

    Total YTD = TOTALYTD([your Amount Measure],'Calendar'[Date])

     
    Regards