Forum Discussion
WalkerGBG
5 years agoFrequent Visitor
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...
- 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.