Forum Discussion

PavelDrg's avatar
PavelDrg
Copper Contributor
Feb 05, 2022
Solved

Runing total of last 365 days in pivot table

Hello people,   I'm looking for a solution to add to the Pivot Table RUNNING TOTALS of sales over the LAST 365 DAYS. For example 1st April 2021 = SUM Sales 02.04.2020 and 01.04.2021. Simple file ex...
  • PavelDrg's avatar
    PavelDrg
    Feb 05, 2022
    I found the solution already, in the Measure based on this DAX:

    Sales Moving Annual Total =
    CALCULATE (
    [Sales Amount],
    DATESINPERIOD (
    'Date'[Date],
    MAX ( 'Date'[Date] ),
    -1,
    YEAR
    )
    )

Resources