The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
32 | |
13 | |
10 | |
10 | |
9 |