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,
I need your help if someone knows how to do this please, I have a table with values and I want to increment values by row.
The result I'm looking for is
do you have an idea if that is doable ?
Thank you so much for the support
Solved! Go to Solution.
Hi, @HE
please try the below.
By the way, the table name that I assigned is Data.
Try any of the following 2:
Running Total Measure =
CALCULATE (
SUM ( Table[Value] ),
FILTER( ALL (Table ),
Table[Index] <= MAX( Table[Index] ))
)
Running Total COLUMN =
CALCULATE (
SUM ( 'Table'[Values] ),
ALL ( 'Table' ),
'Table'[Index] <= EARLIER ( 'Table'[Index] )
)
Try any of the following 2:
Running Total Measure =
CALCULATE (
SUM ( Table[Value] ),
FILTER( ALL (Table ),
Table[Index] <= MAX( Table[Index] ))
)
Running Total COLUMN =
CALCULATE (
SUM ( 'Table'[Values] ),
ALL ( 'Table' ),
'Table'[Index] <= EARLIER ( 'Table'[Index] )
)
Hi, @HE
please try the below.
By the way, the table name that I assigned is Data.
User | Count |
---|---|
98 | |
76 | |
74 | |
49 | |
26 |