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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Syndicate_Admin
Administrator
Administrator

Variación interanual en $ y % de los valores filtrados

Hola, ¿me pueden ayudar con la fórmula para calcular varianzas basadas en valores filtrados?

Tengo esta fórmula para calcular la varianza con el año anterior, pero ¿cómo puedo cambiarla para que se base en el año actual frente al año filtrado? ¡Gracias de antemano por su ayuda!

YOY Fueron $ =
FUERON __PREV_YEAR =
CALCULAR(
[Valor corto real],
FECHAAÑADIR('Calendar_Ultimate'[Fecha], -1, AÑO)
)
DEVOLUCIÓN
[Valor corto real] - __PREV_YEAR
1 REPLY 1
Syndicate_Admin
Administrator
Administrator

Pruebe lo siguiente: YOY Var $ = VAR CurrentYearValue = CALCULATE( [Valor corto real], FILTER( 'Calendar_Ultimate', 'Calendar_Ultimate'[Año] = SELECTEDVALUE('Calendar_Ultimate'[Año]) ) ) VAR FilteredYearValue = CALCULATE( [Valor corto real], FILTER( 'Calendar_Ultimate', 'Calendar_Ultimate'[Año] = SELECTEDVALUE('Calendar_Ultimate'[Año]) - N // N representa el número de años atrás que desea filtrar ) ) RETURN CurrentYearValue - FilteredYearValue

Y para la varianza porcentual:

YOY Var % =
VAR CurrentYearValue =
CALCULATE(
[Actual Short Value],
FILTER(
'Calendar_Ultimate',
'Calendar_Ultimate'[Year] = SELECTEDVALUE('Calendar_Ultimate'[Year])
)
)
VAR FilteredYearValue =
CALCULATE(
[Actual Short Value],
FILTER(
'Calendar_Ultimate',
'Calendar_Ultimate'[Year] = SELECTEDVALUE('Calendar_Ultimate'[Year]) - N // N represents the number of years back you want to filter
)
)
RETURN
DIVIDE(CurrentYearValue - FilteredYearValue, FilteredYearValue)

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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

Top Solution Authors