Forum Discussion
Create a distinct list/table from multiple other tables
- 6 years ago
Hi abloor ,
To fix the error "Circular dependency detected" , you might not use CALCULATE or CALCULATETABLE function in the DAX bridge table.
You can create calculated table like DAX below, then you can filter out the blank value and create relationships as you need.
Table = UNION(DISTINCT('Table 1'[Name]), DISTINCT('Table 2'[Name]),DISTINCT('Table 3'[Name]))
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi abloor ,
To fix the error "Circular dependency detected" , you might not use CALCULATE or CALCULATETABLE function in the DAX bridge table.
You can create calculated table like DAX below, then you can filter out the blank value and create relationships as you need.
Table = UNION(DISTINCT('Table 1'[Name]), DISTINCT('Table 2'[Name]),DISTINCT('Table 3'[Name]))
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Is it possible to use filter on one of the table to remove some unwanted attributes from the table