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
georgy
Frequent Visitor

circular reference error

Hi All,

I have problem where I need to use prior period closing balance as current period opening balance. Something like table below. The problem is that ADDITION column is % of opening balance and there many more other things (% and absolute values which contribute to closing balance) in real data so I can't use formulas. I literally need to use D2 for B3 value in Power BI. Is it possible?

Thank you.

 

Capture.JPG

2 REPLIES 2
MFelix
Super User
Super User

Hi @georgy ,

 

Can you share some more information about the addition column especcially on how it returns the value based on the Opening Balance?

 

If the addition values was a column value you just needed to create the following two measures:

 

Opening Balance =
1
    + CALCULATE (
        SUM ( 'Addition Table'[Addition] );
        FILTER (
            ALL ( 'Addition Table'[Period] );
            'Addition Table'[Period] < MIN ( 'Addition Table'[Period] )
        )
    )

Closing period = [Opening Balance] + SUM('Addition Table'[Addition])

 

However this will only work if your column addition is based values you just need to define the opening balance for the first period. Being different calculation based on the percentages and other thins this need to be adjusted.

 

Check PBIX file attach.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





georgy
Frequent Visitor

Hi MFelix,

Thank you for a quick reply.

As mentioned additions are % of opening balance, there are losses % as well and other absolute values that change from month to month. Something like table below.

image.png

Cheers,

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.