Forum Discussion

WalkerGBG's avatar
WalkerGBG
Frequent Visitor
5 years ago
Solved

Cumulative Column based on month and Feature

Hi   Very new still to PowerBI and Dax.  I've been searching for a few days to work out how to get a Running Total (Cumulative) added to my data after loading Example below What I'm hoping you ca...
  • Ashish_Mathur's avatar
    5 years ago

    Hi,

    This calculated column formula works as well

    Running total = CALCULATE(SUM(Data[ImpactTime]),FILTER(Data,Data[Month]=EARLIER(Data[Month])&&Data[Feature]=EARLIER(Data[Feature])))

    Hope this helps.