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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
tlenzmeier
Helper II
Helper II

Dynamic Row Numbers

Hello,

 

I've been scouring the forum, but haven't found a solution that works for me. I am trying to calculate the net change of a value from the current row to the previous row. Normally, I would consider creating a prior month column, but in my data I can have several rows within the same month.

 

Sample Data

 

Project Number        ForecastDate         Official         Amount        RowOverRow Change

1234                        2017-12-15              1                $500               $    0

1234                        2017-12-21              1                $600               $100

1234                        2018-01-05              0                $650               $  50

1234                        2018-02-10              1              $1,000              $350

 

The total change is $500. I've tried using the "EARLIER" function and the LOOKUPVALUE function, but I cannot get that to work. I've also gone back to edit queries and added an index column.

 

Thanks!

1 ACCEPTED SOLUTION
3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

Hi @tlenzmeier

 

Try this calculated Column

 

Row Over Row Change =
VAR previousdate =
    CALCULATE (
        MAX ( TableName[ForecastDate] ),
        FILTER (
            ALLEXCEPT ( TableName, TableName[Project Number] ),
            TableName[ForecastDate] < EARLIER ( TableName[ForecastDate] )
        )
    )
VAR PreviousAmount =
    CALCULATE (
        SUM ( TableName[Amount] ),
        FILTER (
            ALLEXCEPT ( TableName, TableName[Project Number] ),
            TableName[ForecastDate] = previousdate
        )
    )
RETURN
    IF ( NOT ( ISBLANK ( previousdate ) ), TableName[Amount] - PreviousAmount )

Excellent. Thank you.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.