The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hola
Tengo un conjunto de datos que tiene valores y el año en que se registró ese valor. Quiero crear una medida que muestre el valor máximo para ese año cuando lo agreda a una tabla. Por ejemplo, mis datos tienen este aspecto:
año | Valor |
2008 | 1 |
2008 | 3 |
2008 | 1 |
2009 | 4 |
2010 | 3 |
2010 | 5 |
2010 | 1 |
2011 | 3 |
2011 | 2 |
2012 | 1 |
Así que la medida que quiero agregaría una columna a la tabla que se ve así:
año | Valor | máximo |
2008 | 1 | 3 |
2008 | 3 | 3 |
2008 | 1 | 3 |
2009 | 4 | 4 |
2010 | 3 | 5 |
2010 | 5 | 5 |
2010 | 1 | 5 |
2011 | 3 | 3 |
2011 | 2 | 3 |
2012 | 1 | 1 |
Lo intenté:
Solved! Go to Solution.
@SKH19 ,
tratar como
Medida: CALCULATE(MAX('Table'[Value]),allexcept('Table'[Year]))
También puede probar
@SKH19 ,
tratar como
Medida: CALCULATE(MAX('Table'[Value]),allexcept('Table'[Year]))
Gracias, eso funciona.
¿Qué pasa si quiero el promedio de cada año?
año | Valor | Promedio |
2008 | 1 | 1.66 |
2008 | 3 | 1.66 |
2008 | 1 | 1.66 |
2009 | 4 | 4 |
2010 | 3 | 3 |
2010 | 5 | 3 |
2010 | 1 | 3 |
2011 | 3 | 2.5 |
2011 | 2 | 2.5 |
2012 | 1 | 1 |
HOLA @SKH19,
Puede probar la siguiente fórmula de medida si funciona:
Measure =
CALCULATE (
AVERAGE ( table[Value] ),
ALLSELECTED ( table ),
VALUES ( table[Year] )
)
Puede cambiar las funciones de agregado para aplicar un modo de resumen diferente en los campos. (min, máx., suma, media...)
saludos
Xiaoxin Sheng
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.