Forum Discussion

Elenazhilina's avatar
Elenazhilina
Copper Contributor
Feb 28, 2021

running total in pivot table when grouping dates

in my file there are sums in the context of dates. I formed a pivot table where in the rows of the date, in the columns of the sum. I need to output the running total. for this, the field was re-displayed the amount and made an additional calculation. everything is considered fine, but as soon as I group the data by months, the calculation of the cumulative total gets confused. tell me how to keep the running total in the pivot table after grouping dates into years and months?

8 Replies

  • Elenazhilina 

    With grouping the date built-in Running Total resets calculations from the beginning of each group. To calculate running total through all dates you need to add data to data model and create the measure to calculate it.

    On such sample

    Creating PivotTable add data to data model

    add two measures

    Sum Value:=SUM(Table1[Value])
    
    and
    
    Value Running Total:=VAR
    MaxDate=MAX ( Table1[Date] )
    RETURN
      CALCULATE([Sum Value],
                 Table1[Date]<= MaxDate,
                 ALL (Table1)
      )

    Instead of first one you may use implicit measure which sums value, but better to keep everything in hands and use explicit measures.

    In second one MaxDate will be maximum date for the current group, removing all other filters from the Table we calculate sum of Value till MaxDate.

    Result is

    • Dweesil's avatar
      Dweesil
      Copper Contributor
      I am very curious how you would write the measures to do this with multiple categorical columns. In the above sample your row labels are the dates, but if you want a running total measure for each of two columns called "Sum of Value - GroupA" and "Sum of Value - GroupB".

      I do not see grouping function within the calculate when you create the measure.
      • SergeiBaklan's avatar
        SergeiBaklan
        MVP

        Elenazhilina 

        Power Pivot is desirable but not necessary. However, your version of Excel shall support data model. That is Excel for Windows Desktop starting from 2013 or 2010.

Resources