Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I want the Cumulative Balance Updated column to be the cumulative of Balance Current Month Updated
The below formula is not working:
VAR Result_in =
Total
+ IF (
Total < 0,
Total * -1
)
RETURN
CALCULATE (
Result_in,
FILTER ( ALLSELECTED( ( ‘Date’ )), ‘Date’[Date] <= MAX ( ‘Date’[Date] ) )
)
Also the below is not working
Cumulative Balance Updated =
CALCULATE (
[Balance Current Month Updated],
FILTER ( ALLSELECTED( ( ‘Date’ )), ‘Date’[Date] <= MAX ( ‘Date’[Date] ) )
)
Link to pbix:
https://drive.google.com/file/d/1LcEYNZFgxKRLDbOZelNYltgxBmmg6buA/view?usp=sharing
Solved! Go to Solution.
@Antmkjr , I think across tables data is not getting added up in the context so forced that in suggested formula
@Antmkjr , Try like
Cumulative Balance Updated =
VAR Result =
CALCULATE (
sumx(SUMMARIZE('Date','Date'[MonthnYear],"_1",[Balance Current Month Updated]),[_1]),
FILTER ( ALLSELECTED ( 'Date' ), 'Date'[Date] <= MAX('Date'[Date] )
))
RETURN
Result
Thanks, that works ! But why was my formula not working?
User | Count |
---|---|
11 | |
9 | |
6 | |
5 | |
4 |