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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
LYorkToenniges
Helper III
Helper III

Circular Reference error with no circular reference

I am receiving a circular reference error where there is no circular reference.  This column:

 
Miss Flag = IF('Pod Averages'[Pod Commitment %]<('Pod Averages'[Floor Average]-0.25),1,0)
 
says there is a circular reference as follows:
pod commitment %, miss flag, pod commitment %
 
but here is the pod commitment column (no miss flag reference at all):
Pod Commitment % = CALCULATE(
    DIVIDE(
        SUM('Pod Averages'[Production]),
        SUM('Pod Averages'[Commitment])+SUM('Pod Averages'[Inflation])
        )
    )
 
just for good measure here is the table dax:
Pod Averages = SUMMARIZE('60_DAY_DATA','60_DAY_DATA'[Pod],'60_DAY_DATA'[DateOfData],
 "Floor Average", average('60_DAY_DATA'[Floor Average]),
 "Commitment",SUM('60_DAY_DATA'[Adjusted Commitment]),
 "Production", SUM('60_DAY_DATA'[Total Production]),
 "Inflation", SUM('60_DAY_DATA'[Inflation_Amount])
 )
 
I'm about the rip my hair out.  I have deleted and remade columns.  I need this functional asap!  I see no way there is a circular reference.  Please help!
1 ACCEPTED SOLUTION
LYorkToenniges
Helper III
Helper III

Got it working.  Was given poor instructions.  Apologies, I don't see how to delete this post.

View solution in original post

3 REPLIES 3
LYorkToenniges
Helper III
Helper III

Got it working.  Was given poor instructions.  Apologies, I don't see how to delete this post.

LYorkToenniges
Helper III
Helper III

BTW using ALLEXCEPT makes the Pod COmmitment % column all one value, unacceptable solution.

 

andrewsommer
Super User
Super User

The issue may stem from how SUMMARIZE() works. The Pod Averages table is being created via SUMMARIZE(), but calculated columns within it might be causing an implicit dependency loop.

 

Instead of using SUMMARIZE(), use ADDCOLUMNS() to ensure Power BI correctly tracks dependencies:

 

Please mark this post as solution if it helps you. Appreciate Kudos.

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors