Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Quiero tener una medida que muestre 1 cuando un estado haya cambiado y 0 cuando el estado sea el mismo que el valor de ayer. Mi conjunto de datos es bastante grande, por lo que quiero evitar usar una columna calculada si es posible.
Siento que estoy muy cerca de tener el DAX correcto, pero esta medida no me está dando el resultado que estoy buscando.
Change Status Flag =
INT (
COUNTROWS (
FILTER (
'Table',
'Table'[Key]
= EARLIER ( 'Table'[Key] )
&& 'Table'[Status]
<> EARLIER ( 'Table'[Status] )
&& 'Table'[Snapshot Date]
= EARLIER ( 'Table'[Snapshot Date] )
)
) > 0
)
Lo que estoy recibiendo -
Valor establecido en 1 aunque el estado del día anterior no haya cambiado
Lo que quiero:
Marque solo las filas donde el estado es diferente al de ayer.
¿Alguien podría ayudarme con el DAX para lograr esto? Gracias de antemano por su ayuda.
Se adjuntan mis datos de muestra.
Snapshot DateKeyStatus
|
Hasta ahora, pocos usuarios optan por las funciones de ventana; Tal vez pocos tienen una comprensión profunda de ellos.
Espero que las funciones de la ventana sean más eficientes en tales escenarios que FILTER() de la "vieja escuela".
Tomo Kudos en cualquier momento. ¡Me alegro de poder ayudar!
Esto funciona brillantemente y es muy útil tenerlo en el arsenal. Muchas gracias @foodd , hiciste mi viernes por la noche!
Establezca la columna personalizada para que sea:
Change Status Flag =
VAR CurrentDate = 'Table'[Snapshot Date]
VAR CurrentKey = 'Table'[Key]
VAR CurrentStatus = 'Table'[Status]
VAR PreviousStatus =
CALCULATE(
FIRSTNONBLANK('Table'[Status], 1),
FILTER(
'Table',
'Table'[Snapshot Date] = CurrentDate - 1 &&
'Table'[Key] = CurrentKey
)
)
RETURN IF(ISBLANK(PreviousStatus), 0, IF(CurrentStatus <> PreviousStatus, 1, 0))
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.