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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
anmolmalviya05
Super User
Super User

Dax measure

I have below sample data 

anmolmalviya05_0-1708494743855.png

I want to create a dax measure which return the sum of values between each new entry,
for example:  before the first entry in entry column it should return 0, after the first entry in entry column it should return the sum of all values upto next entry
expected output:

anmolmalviya05_1-1708494890351.png

 

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

This is a very heavy lift for a DAX measure.  Would be much easier to do in Power Query

 

lbendlin_0-1708534812125.png

 

Expected Output =
VAR i =
    SELECTEDVALUE ( 'Table'[Index] )
VAR minindex =
    MAXX (
        FILTER ( ALLSELECTED ( 'Table' ), [Index] <= i && [Entry] > 0 ),
        [Index]
    )
VAR maxindex =
    COALESCE (
        MINX ( FILTER ( ALLSELECTED ( 'Table' ), [Index] > i && [Entry] > 0 ), [Index] ),
        1 + MAXX ( ALLSELECTED ( 'Table' ), [Index] )
    )
RETURN
    IF (
        i = 1,
        0,
        SUMX (
            FILTER ( ALLSELECTED ( 'Table' ), [Index] >= minindex && [Index] < maxindex ),
            [Value]
        )
    )

 

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

This is a very heavy lift for a DAX measure.  Would be much easier to do in Power Query

 

lbendlin_0-1708534812125.png

 

Expected Output =
VAR i =
    SELECTEDVALUE ( 'Table'[Index] )
VAR minindex =
    MAXX (
        FILTER ( ALLSELECTED ( 'Table' ), [Index] <= i && [Entry] > 0 ),
        [Index]
    )
VAR maxindex =
    COALESCE (
        MINX ( FILTER ( ALLSELECTED ( 'Table' ), [Index] > i && [Entry] > 0 ), [Index] ),
        1 + MAXX ( ALLSELECTED ( 'Table' ), [Index] )
    )
RETURN
    IF (
        i = 1,
        0,
        SUMX (
            FILTER ( ALLSELECTED ( 'Table' ), [Index] >= minindex && [Index] < maxindex ),
            [Value]
        )
    )

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.