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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Everybody,
I have this table
i want to create the yellow column that calculates a cummulative sum for payments per customer. Is this possible?
Solved! Go to Solution.
@chkapelis Try:
cumtotal column =
VAR __customer = [customer]
VAR __date = [date]
VAR __table = FILTER(ALL('Table'),[customer] = __customer && [date] <= __date)
VAR __result = SUMX(__table, [amount])
RETURN
__result
Based on this: Better Running Total - Microsoft Power BI Community
@chkapelis Try:
cumtotal column =
VAR __customer = [customer]
VAR __date = [date]
VAR __table = FILTER(ALL('Table'),[customer] = __customer && [date] <= __date)
VAR __result = SUMX(__table, [amount])
RETURN
__result
Based on this: Better Running Total - Microsoft Power BI Community
ok i will
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
13 | |
7 | |
5 |