Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet 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
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!
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)
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.