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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello All,
I am struggling with getting cumulative totals of a measure I created under "GP per WR"
I basically want them to all add up to the previous periods going forward and the closest I got was with this formula which doesn't return correct results:
Any help would be appreciated
Solved! Go to Solution.
Ah, this does make things more clear.
[GP per WR] appears to be a ratio. Thus, the cumulative total is more like a cumulative average than a cumulative sum.
You can get the cumulative sum by iterating over the periodNumber along these lines
SUMX (
FILTER (
ALL ( FactPeoplePerPeriod[periodNumber] ),
FactPeoplePerPeriod[periodNumber] <= MAX ( FactPeoplePerPeriod[periodNumber] )
),
[GP per WR]
)
but I'd take a minute to think about what this calculation actually means and how to interpret the numbers you get since summing ratios often doesn't make much sense (I don't know if it does in your case or not).
What results does your attempt give?
Hi - Sorry left that out. Here is the results
Ah, this does make things more clear.
[GP per WR] appears to be a ratio. Thus, the cumulative total is more like a cumulative average than a cumulative sum.
You can get the cumulative sum by iterating over the periodNumber along these lines
SUMX (
FILTER (
ALL ( FactPeoplePerPeriod[periodNumber] ),
FactPeoplePerPeriod[periodNumber] <= MAX ( FactPeoplePerPeriod[periodNumber] )
),
[GP per WR]
)
but I'd take a minute to think about what this calculation actually means and how to interpret the numbers you get since summing ratios often doesn't make much sense (I don't know if it does in your case or not).
I have the problem that I want to make a cumulative sum of a measure, but of different SKU's, without taking into account dates.
What would be the solution using the same data, but if the "periodNumber" column, instead of being numbered from 1 to 17, were 17 different SKU's with different numbers and letters?
That worked beautifully. Thank you so much for your help
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.