Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
tez
Resolver I
Resolver I

Promedio parcial - ¿cómo?

Hola

Tengo datos de años y semanas (un valor por año y semana)

Quiero crear un gráfico de líneas, que muestra una línea en todas las semanas de los últimos dos años (2020 y 2019), y muestra una tercera línea con el promedio de todos los demás años (2000-2018). ¿Cómo se puede hacer esto de la manera más fácil?

saludos

Thomas.

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

No @tez,

En función de su descripción, puede crear estas medidas:

2019 = 
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( 'Table', 'Table'[date].[Year] = 2019 )
)
2020 = 
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( 'Table', 'Table'[date].[Year] = 2020 )
)
Average = 
CALCULATE (
    AVERAGE ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[date].[Year] >= 2000
            && 'Table'[date].[Year] <= 2018
    )
)

line chart.png

Adjunto un archivo de muestra en el siguiente, espera ayudarle.

Saludos
Equipo de apoyo a la comunidad _ Yingjie Li
Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

View solution in original post

3 REPLIES 3
tez
Resolver I
Resolver I

@v-yingjl & @parry2k gracias por las recomendaciones. ¡Se ve bien, lo implementaré!

v-yingjl
Community Support
Community Support

No @tez,

En función de su descripción, puede crear estas medidas:

2019 = 
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( 'Table', 'Table'[date].[Year] = 2019 )
)
2020 = 
CALCULATE (
    SUM ( 'Table'[Value] ),
    FILTER ( 'Table', 'Table'[date].[Year] = 2020 )
)
Average = 
CALCULATE (
    AVERAGE ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[date].[Year] >= 2000
            && 'Table'[date].[Year] <= 2018
    )
)

line chart.png

Adjunto un archivo de muestra en el siguiente, espera ayudarle.

Saludos
Equipo de apoyo a la comunidad _ Yingjie Li
Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

parry2k
Super User
Super User

@tez probar esta medida

Avg Line = CALCUAGE ( AVERAGE ( Table[Value] ), CalendarTable[Year] < 2019 )

Consulta mi última entrada de blog Año-2020, Pandemia, Power BI y más allá para obtener un resumen de mis versiones favoritas de las características de Power BI en 2020

Me gustaría elogios si mi solución ayudara. 👉 Si puedes dedicar tiempo a publicar la pregunta, también puedes hacer esfuerzos para dar Felicitaciones a quien haya ayudado a resolver tu problema. ¡Es una muestra de agradecimiento!

Visítenos en https://perytus.com, su ventanilla única para proyectos/formación/consulta relacionadas con Power BI.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.