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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
user35131
Helper III
Helper III

How to subtract row values by previous row within a group and set the result in a new column

I would like to set the result in the first row as opposed to the later row. For example 

 

GroupValueIndex
A101
A52
A33
B191
B152
C151
C102
C73
C174

 

Which would look like this

 

GroupValueIndexResult
A1015
A522
A33NULL
B1914
B152NULL
C1515
C1023
C73-10
C174NULL

 

note that many of the similar questions will send the result in the next row. I want it to stay in the first row.

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @user35131 ,

You can create a measure as below to get it, please find the details in the attachment.

Result = 
VAR _selgroup =
    SELECTEDVALUE ( 'Table'[Group] )
VAR _selindex =
    SELECTEDVALUE ( 'Table'[Index] )
VAR _nextvalue =
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[Group] = _selgroup
                && 'Table'[Index] = _selindex + 1
        )
    )
RETURN
    IF ( ISBLANK ( _nextvalue ), BLANK (), SUM ( 'Table'[Value] ) - _nextvalue )

yingyinr_0-1675737787616.png

In addition, you can create a calculated column as below to get it.

Column = 
VAR _nextvalue =
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[Group] = EARLIER('Table'[Group])
                && 'Table'[Index] = EARLIER('Table'[Index]) + 1
        )
    )
RETURN
    IF ( ISBLANK ( _nextvalue ), BLANK (),  'Table'[Value]  - _nextvalue )

yingyinr_1-1675737946203.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

This calculated column formula works

Column = if(ISBLANK(LOOKUPVALUE(Data[Value],Data[Index],CALCULATE(MIN(Data[Index]),FILTER(Data,Data[Group]=EARLIER(Data[Group])&&Data[Index]>EARLIER(Data[Index]))),Data[Group],Data[Group])),BLANK(),Data[Value]-LOOKUPVALUE(Data[Value],Data[Index],CALCULATE(MIN(Data[Index]),FILTER(Data,Data[Group]=EARLIER(Data[Group])&&Data[Index]>EARLIER(Data[Index]))),Data[Group],Data[Group]))

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-yiruan-msft
Community Support
Community Support

Hi @user35131 ,

You can create a measure as below to get it, please find the details in the attachment.

Result = 
VAR _selgroup =
    SELECTEDVALUE ( 'Table'[Group] )
VAR _selindex =
    SELECTEDVALUE ( 'Table'[Index] )
VAR _nextvalue =
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[Group] = _selgroup
                && 'Table'[Index] = _selindex + 1
        )
    )
RETURN
    IF ( ISBLANK ( _nextvalue ), BLANK (), SUM ( 'Table'[Value] ) - _nextvalue )

yingyinr_0-1675737787616.png

In addition, you can create a calculated column as below to get it.

Column = 
VAR _nextvalue =
    CALCULATE (
        SUM ( 'Table'[Value] ),
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[Group] = EARLIER('Table'[Group])
                && 'Table'[Index] = EARLIER('Table'[Index]) + 1
        )
    )
RETURN
    IF ( ISBLANK ( _nextvalue ), BLANK (),  'Table'[Value]  - _nextvalue )

yingyinr_1-1675737946203.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

@user35131 , for that we need to have some date of index column

 

Add an index column in the power query

Index Column: https://youtu.be/NS4esnCDqVw

 

Then create a new column in dax like

 

diff = [result] - max(filter(Table, [group] = earlier([group] ) && [Index] = earlier([index]) +1 ), [result])

 

Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8

You have result in the formula before it is defined. Will this work? The second table is the table I want. The first table is the one I have.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.