Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

Increment values by row in a table

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.

HE_0-1616676063254.png

The result I'm looking for is 

HE_1-1616676355330.png

do you have an idea if that is doable ? 

 

Thank you so much for the support 

 

2 ACCEPTED SOLUTIONS
Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

please try the below.

By the way, the table name that I assigned is Data.

 

Cumulate Total =
CALCULATE( SUM(Data[Value]), FILTER( ALLSELECTED( Data[Index]), Data[Index] <= MAX(Data[Index])))
 
Did I answer your question? Mark my post as a solution!
Appreciate your Kudos!!

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

View solution in original post

themistoklis
Community Champion
Community Champion

@Anonymous 

 

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] )
)

 

 

 

 

 

View solution in original post

2 REPLIES 2
themistoklis
Community Champion
Community Champion

@Anonymous 

 

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] )
)

 

 

 

 

 

Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

please try the below.

By the way, the table name that I assigned is Data.

 

Cumulate Total =
CALCULATE( SUM(Data[Value]), FILTER( ALLSELECTED( Data[Index]), Data[Index] <= MAX(Data[Index])))
 
Did I answer your question? Mark my post as a solution!
Appreciate your Kudos!!

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.