Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Buenos días red, estoy tratando de calcular el promedio de 3 medidas.
Tengo una tabla con los empleados y como les dio el porcentaje de cumplimineto en 3 tareas distintas. Este porcentaje de cumplimineto de las tareas esta calculada a traves de medidas, lo que quiero hacer es saber el porcentaje de cumplimineto total del empleado. Dejo la tabla que tengo, lo que busco es agregar otra columna con el cumplimiento total.
Desde ya muchas gracias a todos por la ayuda!!
Solved! Go to Solution.
Hi @delfina04 ,
Thanks for the reply from lbendlin , please allow me to provide another insight:
Based on your description, I created three measures.
Measure =
SUM('financials'[COGS]) / SUM(financials[ Sales])
Measure 2 =
SUM(financials[ Sales]) / SUM(financials[Gross Sales])
Measure 3 =
SUM(financials[Profit]) / SUM(financials[ Sales])
Finally, create a measure to calculate their average.
Measure 4 =
([Measure] + [Measure 2] + [Measure 3]) / 3
In case my example is different from your reality, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @delfina04 ,
Thanks for the reply from lbendlin , please allow me to provide another insight:
Based on your description, I created three measures.
Measure =
SUM('financials'[COGS]) / SUM(financials[ Sales])
Measure 2 =
SUM(financials[ Sales]) / SUM(financials[Gross Sales])
Measure 3 =
SUM(financials[Profit]) / SUM(financials[ Sales])
Finally, create a measure to calculate their average.
Measure 4 =
([Measure] + [Measure 2] + [Measure 3]) / 3
In case my example is different from your reality, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Si funciono, muchas gracias!!
You cannot measure a measure directly. Either materialize it first, or create a separate measure that implements the entire business logic.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
17 |
User | Count |
---|---|
35 | |
21 | |
19 | |
18 | |
10 |