Suma el valor de dos columnas juntas

Un usuario Pregunto ✅

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? 

JoanCampbell_0-1631949470136.pngJoanCampbell_1-1631949500188.png

 

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)
)
)

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *