Forum Discussion
Anonymous
5 years agoNot applicable
Circular dependency
Hello community, I am having a problem when I want to apply the following DAX that refers to Circular dependency: cantidad_plataforma_todas = if(MoviesAllServicesStreaming[cantidad_plataforma] =...
JW_van_Holst
5 years agoResolver IV
Your circular dependency is a caused by a combination of:
- The use of calculate in the calculated colomn [cantidad_plataforma]
- Lack of a column with unique identifiers (ID has a few blanks)
The simplest solution is not using calculate in [cantidad_plataforma]. The calculation can be done using row context (just adding the columns).
(there is an error in [cantidad_plataforma]: ‘Hulu’ is counted twice, but that has nothing to do with your circular dependency)