Forum Discussion
Circular Dependency
- 9 years ago
Antoine,
Well my next try would be to make the model less complex. E.g. the intermediaire table has a 1-1 wit the other table, maybe there is a way to combine them since the fields in both seem similar as well?
Hi Antoine,
how do the relationships look between the different tables : 'colisage', '1cid des PF' and 'Site-Article Fournisseur' Do all tables have primary keys?
Are these 3 the only tables in the model? Do you have filtering in both directions on for all relations in the model (which will lead to ambiguity in the model and circular dependencies)?
Error message says that to calculate couverture collisage, the formula is also taking Dép into account, and not only vice versa, so I think key to solution lies in looking in to the relationships between your tables.
- AntoineB9 years agoRegular Visitor
I'm not sure the tables have primary keys (I have not found how to manage primary key directly in PBI).
The relation between tables are the following :Does it help to understand?
- AntoineB9 years agoRegular Visitor
- WP9 years agoFrequent Visitor
Antoine,
Try disabling bidirectional filtering on at least one of your one2many relationships, by double clicking on relationships and direct them from 1 to many. (default)
Harder to explain why then to try :)
The idea goes something like : when calculating your couverture collisage, you allow filtering your S-A-F table by other tables. The moment another table filters the S-A-F table, this contains the dép column. The fact that filtering is possible either through fcid and colisage at the same time adds some ambiguity. Removing the bidirectional filter, would solve this if this is the cause.
good luck!