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.
Hi all,
I've looked at several other posts answering similar questions but can't find exactly what I need. Basically, I have a column for Index (starting at 1), and a column for quantity of items. I want to do a running total of the quantity based on the Index column - but it needs to be in a calculated column rather than a measure as I need to use the column itsself for an additional analysis in a bit. I have tried the following, but it doesn't work -
Solved! Go to Solution.
Hi @Thigs
for a calculated column you can use
Cumulative Total =
SUMX (
FILTER ( 'Data', 'Data'[Index] <= EARLIER ( 'Data'[Index] ) ),
'Data'[QtyPicked]
)
Hi @Thigs
for a calculated column you can use
Cumulative Total =
SUMX (
FILTER ( 'Data', 'Data'[Index] <= EARLIER ( 'Data'[Index] ) ),
'Data'[QtyPicked]
)
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.
User | Count |
---|---|
9 | |
8 | |
8 | |
4 | |
3 |
User | Count |
---|---|
15 | |
15 | |
11 | |
10 | |
10 |