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
SHOOKANSON
Advocate I
Advocate I

Circular Dependency - Simple Fix?

Hi all,

 

I am having an issue which I hope there is a simple fix for. I am trying to create two calculated columns (I cannot use measures because I need it to calculate row by row) - a sell column and a cost column.

 

When using these functions:

SELL = CALCULATE(SUM[SELL])*CALCULATE(SUM[QTY])

COST = CALCULATE(SUM[COST])*CALCULATE(SUM[QTY])

 

I keep getting a circular dependency error - I assume because I am trying to use the quantity in both columns. I tried adding an index column, but that did not solve my issue. I hope there is a simple fix to this that I just cannot find?

 

Thanks!!!

1 ACCEPTED SOLUTION
Interkoubess
Solution Sage
Solution Sage

Hi @SHOOKANSON,

 

If you want to compute row by rows, then you can use SUMX.

 

SO for example in your case, you can have 

SELL = Sumx( Table, SELL*QTY)

COST=SUMX(Table, COST*QTY)

 

Please give a sample if you keep having trouble with the formulas,

 

Ninter

View solution in original post

2 REPLIES 2
Interkoubess
Solution Sage
Solution Sage

Hi @SHOOKANSON,

 

If you want to compute row by rows, then you can use SUMX.

 

SO for example in your case, you can have 

SELL = Sumx( Table, SELL*QTY)

COST=SUMX(Table, COST*QTY)

 

Please give a sample if you keep having trouble with the formulas,

 

Ninter

I knew I was missing something simple! Thanks! 

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.