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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Jaed
Frequent Visitor

DAX: Avoid cyclic dependency

Hi all,

 

 I am new to power BI.

 

I am trying to calculate the daily open pieces.

 

I am able to do this in excel, but when copieng to PBI I get a cyclic dependency.

 

Jaed_0-1692000636884.png

 

Pieces requested = sum of all open pieces on a certain requested dispatch date

Pieces Shipped = sum of all pieces shipped on a certain loaded dispatch date

Backlog Formula = first row  // =B3-D3 and from there on =C4-D4

Pieces requested +Backlog = first row  // =B3 and from there on =B4+E3

 

I have tried working with offset, but only get a cyclic dependency.

 

Is there a solution doing it in this logic?

 

Much appreciate your help.

 

BR

 

 

2 ACCEPTED SOLUTIONS
MFelix
Super User
Super User

Hi @Jaed ,

 

For this you need to create two different measures:

Pieces Requested  + Backlog =
VAR temptable =
    FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] < MAX ( 'Table'[Date] ) )
RETURN
    SUM ( 'Table'[Pieces Requested] )
        + SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )




Backlog =
VAR temptable =
    FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] <= MAX ( 'Table'[Date] ) )
RETURN
    SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )

MFelix_0-1692032222189.png

 

If you want to have this based on a column redo the formulas to:

Backlog Column = 
VAR temptable =
    FILTER (  'Table', 'Table'[Date] <= EARLIER(  'Table'[Date] ) )
RETURN
    SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )

Pieces Requested  + Backlog Column = 
VAR temptable =
    FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] < EARLIER(  'Table'[Date] ) )
RETURN
     'Table'[Pieces Requested] 
        + SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )

 

MFelix_1-1692032401030.png

 

 


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





View solution in original post

Jaed
Frequent Visitor

Thank you very much 🙂

View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @Jaed ,

 

For this you need to create two different measures:

Pieces Requested  + Backlog =
VAR temptable =
    FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] < MAX ( 'Table'[Date] ) )
RETURN
    SUM ( 'Table'[Pieces Requested] )
        + SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )




Backlog =
VAR temptable =
    FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] <= MAX ( 'Table'[Date] ) )
RETURN
    SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )

MFelix_0-1692032222189.png

 

If you want to have this based on a column redo the formulas to:

Backlog Column = 
VAR temptable =
    FILTER (  'Table', 'Table'[Date] <= EARLIER(  'Table'[Date] ) )
RETURN
    SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )

Pieces Requested  + Backlog Column = 
VAR temptable =
    FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] < EARLIER(  'Table'[Date] ) )
RETURN
     'Table'[Pieces Requested] 
        + SUMX ( temptable, 'Table'[Pieces Requested] - 'Table'[Pieces Shiped] )

 

MFelix_1-1692032401030.png

 

 


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





Jaed
Frequent Visitor

Thank you very much 🙂

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.