Forum Discussion
LisaBureau
2 years agoFrequent Visitor
Cumulative Total - Confused
I am terribly confused. Below is a cut of my table including the Column created using this "formula": ***bleep*** Forecast = CALCULATE(SUM('Year Actual + Forecast'[USD]),FILTER(ALL('Year Actual + ...
- 2 years ago
LisaBureau You used CALCULATE. More specifically, you used CALCULATE in a single table data model. Better Running Total - Microsoft Fabric Community
Greg_Deckler
2 years agoCommunity Champion
LisaBureau You used CALCULATE. More specifically, you used CALCULATE in a single table data model. Better Running Total - Microsoft Fabric Community
LisaBureau
2 years agoFrequent Visitor
Greg_Deckler THANK YOU
Using this worked:
USD RT =
VAR _Date = max('Year Actual + Forecast'[Date])
VAR _Table = FILTER(ALLSELECTED('Year Actual + Forecast'),[Date]<=_Date)
RETURN
SUMX(_Table,[USD])