March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola
Estoy luchando por encontrar el cálculo correcto para el mes anterior cuando uso la función de división también.
El cálculo genérico es:
Solved! Go to Solution.
Hay varias maneras de lograr esto. Necesitará una tabla de fechas para estas medidas, con una relación con la tabla de hechos.
Enfoque 1:
Previous =
CALCULATE (
DIVIDE (
CALCULATE (
DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ),
'KPI 42&43'[On time/not on time] = "On Time"
),
( DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ) )
),
PREVIOUSMONTH ( DimDate[Date] )
)
Enfoque 2:
Previous =
DIVIDE (
CALCULATE (
DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ),
'KPI 42&43'[On time/not on time] = "On Time",
PREVIOUSMONTH ( DimDate[Date] )
),
CALCULATE (
DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ),
PREVIOUSMONTH ( DimDate[Date] )
)
)
@Sofien1234 , con la ayuda de la tabla de fechas como
calcular ( DIVIDE(
CALCULATE(DISTINCTCOUNT('KPI 42&43'[ULD No.]),'KPI 42&43'[A tiempo/no a tiempo]="A tiempo"),(
DISTINCTCOUNT('KPI 42&43'[ULD No.])
)), priormonth('Fecha'[Fecha]) )
o
calcular ( DIVIDE(
CALCULATE(DISTINCTCOUNT('KPI 42&43'[ULD No.]),'KPI 42&43'[A tiempo/no a tiempo]="A tiempo"),(
DISTINCTCOUNT('KPI 42&43'[ULD No.])
)), dateadd('Fecha'[Fecha]),-1,mes )
@Sofien1234 , con la ayuda de la tabla de fechas como
calcular ( DIVIDE(
CALCULATE(DISTINCTCOUNT('KPI 42&43'[ULD No.]),'KPI 42&43'[A tiempo/no a tiempo]="A tiempo"),(
DISTINCTCOUNT('KPI 42&43'[ULD No.])
)), priormonth('Fecha'[Fecha]) )
o
calcular ( DIVIDE(
CALCULATE(DISTINCTCOUNT('KPI 42&43'[ULD No.]),'KPI 42&43'[A tiempo/no a tiempo]="A tiempo"),(
DISTINCTCOUNT('KPI 42&43'[ULD No.])
)), dateadd('Fecha'[Fecha]),-1,mes )
Hay varias maneras de lograr esto. Necesitará una tabla de fechas para estas medidas, con una relación con la tabla de hechos.
Enfoque 1:
Previous =
CALCULATE (
DIVIDE (
CALCULATE (
DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ),
'KPI 42&43'[On time/not on time] = "On Time"
),
( DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ) )
),
PREVIOUSMONTH ( DimDate[Date] )
)
Enfoque 2:
Previous =
DIVIDE (
CALCULATE (
DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ),
'KPI 42&43'[On time/not on time] = "On Time",
PREVIOUSMONTH ( DimDate[Date] )
),
CALCULATE (
DISTINCTCOUNT ( 'KPI 42&43'[ULD No.] ),
PREVIOUSMONTH ( DimDate[Date] )
)
)
Gracias por la ayuda, funciona. ¿Hay también algo como la semana anterior para agregar para esto? Luego, por ejemplo, si es miércoles hoy. La semana anterior NO debe calcular desde el jueves de la semana pasada hasta el miércoles de esta semana, pero debe calcular la semana anterior de lunes a domingo.
Me alegro de que funcione. Puede usar una instrucción IF para verificar si el día actual es el miércoles y luego incluir los días apropiados.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.