Power BI failed to save modifications to the Server a circular dependency was detected

In this article let's understand what Circular Dependency is and how it can cause issues when creating Calculated Columns in a Fact table or a table that doesn't contain at least one unique column.

There are always 2 types of dependencies, Regular and Circular.

Regular Dependency always exists in any kind of programming language even if you haven't thought about that, in DAX Regular Dependencies are used to keep track of Measures, Columns, relationships etc.

For example you create a basic sales measure like the following:

Now the DAX engines need to keep a track of the dependency created on the columns of the Sales table by SUMX and it happens automatically and you never have to worry about it but sometimes you might want to create calculated columns in a Fact table that doesn't have a unique key and you will notice that as soon as you confirm the code of the second column you get a Circular Dependency error, let's understand why:

Data Model used:

Power BI failed to save modifications to the Server a circular dependency was detected

Sales table contains only 20 duplicated rows and Products is a regular Dimension nothing special in that to share:

The first thing to do is to create a new calculated column named "Silver Sales"

Power BI failed to save modifications to the Server a circular dependency was detected

The problem arises as soon as I create anothe calculated column with the same code:

Power BI failed to save modifications to the Server a circular dependency was detected

The error says: A circular dependency was detected: Sales[Column], Sales[Silver Sales], Sales[Column].

Power BI failed to save modifications to the Server a circular dependency was detected

Let's understand why we are getting Circular Dependency error.

When we wrote the code for the first column, CALCULATE starts and initiates Context Transition and since a Calculated Column is evaluated in a row context the Context Transition is performed for each row of the Sales Table. CALCULATE convert each column's value in the currently iterated row and trnasforms it into equivalent filter context.

So the code for the second line will look something like this:

And when we create the second column internally the code will look something like this after context transition

So if this column could be a part of the model, what could go wrong? The issue is if it was possible to confirm this column the first column would have depended on the second column and the second column will depend on first column because of the context transition:

And the code of the first column would have looked something like this:

Before moving to the solution let's see if we get the same error in the Products Table which is a dimension table with a unique column.

I get no error warning in the products table after confirming the second column.

Power BI failed to save modifications to the Server a circular dependency was detected

The reason why we don't get an error on the Dimension table and get an error in the fact table is that Products table contains a Primary Key and the Sales table doesn't have a Primary Key, so does that mean if we add a primary key to the sales table the calculations will start working? No, its not going to happen, let's see why.

In the below image you can see that I have added an Index column and still I get an error:

Power BI failed to save modifications to the Server a circular dependency was detected

The reson is that having a primary key is not sufficient, the engine must know that the unique column in the primary key of the table, and that is possible through the relationships.

In the data model the Products Table and Sales Table have a 1:Many relationship that's why the engine knows that the Product Key in the Products table is the primary key and Sales has the Foreign Key.

Fixing the Issue

The way to fix the calculations is to remove the filters coming because of context transition from the both columns.

In the code what I have done is introduced REMOVEFILTERS that removes the filters coming because of context transition:

Power BI failed to save modifications to the Server a circular dependency was detected

Deleting the Relationship

Now let's see what happens if we break the relationship between Sales and Products table:

Power BI failed to save modifications to the Server a circular dependency was detected

This time I have created 2 columns in the Products table and I am basically counting the Silver Products:

and

Power BI failed to save modifications to the Server a circular dependency was detected

The above image proves that just because there is a primary key in a table it doesn't mean the calculations will work, the engine must know there is a primary key in a table:

If creating relationships isn't an option then you can use the UI to tell the engine that the column in the table is a primary key of the table

Power BI failed to save modifications to the Server a circular dependency was detected

And the calculations start working once again:

Power BI failed to save modifications to the Server a circular dependency was detected

Behind the Scenes

Lets' understand what happens internally with the help of DAX query plans:

I have created a query column on the sales table using this code:

Power BI failed to save modifications to the Server a circular dependency was detected

If we take a look at the Logical Query plan you will notice that on the Line 1 it says:

Power BI failed to save modifications to the Server a circular dependency was detected

DependOnCols(1, 2, 3, 4, 5)('Sales'[ProductKey], 'Sales'[CustomerKey], 'Sales'[Order Date], 'Sales'[Quantity], 'Sales'[Net Price])

This is the dependency which is created because of the context transition

Now I have created another query column using the following code and have removed the dependency of Silver Sales on Silver Sales 2 otherwise the code won't run and will produce an error

Now in the logical query plan you will see that for Sales[Silver Sales 2] we see a dependency on the Silver Sales column

Power BI failed to save modifications to the Server a circular dependency was detected

This is why we need to use CALCUALATE modifier like REMOVEFILTERS to remove the dependency of the 2 columns from each other.