apagan
He intentado sumar el valor de 2 columnas juntas en una columna llamada Porcentaje, pero no he tenido éxito. Aquí está la fórmula que estoy usando:
Porcentaje = CALCULAR (SUMA (Apariciones[Winner]) / Apariciones[Loser]+ Apariencia[Winners)
What am I doing wrong?
Thanks!
LaurentCouartou
I bet you got an incredibly long error message with a long list of possible reasons why your measure would not work.
This message means you can only reference a column (like Appearances[Loser]😞
– cuando existe un contexto de fila (en el segundo argumento de una función FILTER, SUMX, ….)
– en una función agregada como SUM, MIN, MAX, …
– funciones internas como VALORES, TODOS, DISTINTOS, FILTROS …
En su caso, probablemente quiso decir:
CALCULAR (SUMA (Apariciones[Winner])
/ (
SUM (Apariciones[Loser])
+ SUM (Apariencia[Winners)
)
)
JoanCampbell
I have one column where I added together Up and Built. Now I need to get the percentage up. But it is giving me an error. What am I doing wrong?
LaurentCouartou
I bet you got an incredibly long error message with a long list of possible reasons why your measure would not work.
This message means you can only reference a column (like Appearances[Loser]😞
– cuando existe un contexto de fila (en el segundo argumento de una función FILTER, SUMX, ….)
– en una función agregada como SUM, MIN, MAX, …
– funciones internas como VALORES, TODOS, DISTINTOS, FILTROS …
En su caso, probablemente quiso decir:
CALCULATE( SUM(Appearances[Winner])
/ (
SUM(Appearances[Loser])
+SUM(Appearance[Winners)
)
)