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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
BCAdmin
New Member

Loop calculation

Hi All,

 

I'm trying to do this on Power BI, but I can't figure out the formula to do this. I want to use the previous calculated value from Column E to the next row and so on. Is it possible to be done on Power BI?

 

Below is the formula on Excel:

BCAdmin_1-1652215898223.png

 

The data value:

BCAdmin_2-1652215972356.png

 

Thank you!

 

 

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

Hi @BCAdmin ,

 

I have a test on amitchandak's code and I find that I won't return the result you want. Firstly, we need to add an Index column in Power Query if you only have month column in text format.

Your table will be like as below.

RicoZhou_0-1652420845380.png

Then add calculated columns in this table.

Column4 = 
VAR _START =
    CALCULATE ( SUM ( 'Table'[Column1] ), ALL ( 'Table' ) )
RETURN
    _START
        + SUMX (
            FILTER ( 'Table', 'Table'[Index] <= EARLIER ( 'Table'[Index] ) ),
            [Column2] - [Column3]
        )
New Column1 = 
VAR _PREVIOUS_COLUMN4 =
    CALCULATE (
        SUM ( 'Table'[Column4] ),
        FILTER ( 'Table', 'Table'[Index] = EARLIER ( 'Table'[Index] ) - 1 )
    )
RETURN
    IF ( ISBLANK ( 'Table'[Column1] ), _PREVIOUS_COLUMN4, 'Table'[Column1] )

Result is as below.

RicoZhou_1-1652420892197.png

 

Best Regards,
Rico Zhou

 

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

2 REPLIES 2
v-rzhou-msft
Community Support
Community Support

Hi @BCAdmin ,

 

I have a test on amitchandak's code and I find that I won't return the result you want. Firstly, we need to add an Index column in Power Query if you only have month column in text format.

Your table will be like as below.

RicoZhou_0-1652420845380.png

Then add calculated columns in this table.

Column4 = 
VAR _START =
    CALCULATE ( SUM ( 'Table'[Column1] ), ALL ( 'Table' ) )
RETURN
    _START
        + SUMX (
            FILTER ( 'Table', 'Table'[Index] <= EARLIER ( 'Table'[Index] ) ),
            [Column2] - [Column3]
        )
New Column1 = 
VAR _PREVIOUS_COLUMN4 =
    CALCULATE (
        SUM ( 'Table'[Column4] ),
        FILTER ( 'Table', 'Table'[Index] = EARLIER ( 'Table'[Index] ) - 1 )
    )
RETURN
    IF ( ISBLANK ( 'Table'[Column1] ), _PREVIOUS_COLUMN4, 'Table'[Column1] )

Result is as below.

RicoZhou_1-1652420892197.png

 

Best Regards,
Rico Zhou

 

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

@BCAdmin , Assume you have date or index column (add in power query)

 

You can create a new column

[Column1] - Sumx(filter(Table, [Date] <= earlier([date]) ), [Column2] -[Column3])

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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

Top Solution Authors