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

Be 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

Reply
Syndicate_Admin
Administrator
Administrator

PREVIOUSMONTH dentro del cálculo de la división

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:

Anterior =
DIVIDIR(
CALCULAR(DISTINCTCOUNT('KPI 42&43'[Nº ULD]),'KPI 42&43'[A tiempo/no a tiempo]="A tiempo"),(
DISTINCTCOUNT('KPI 42&43'[Nº ULD])
))
Intenté varias formas de agregar la expresión del mes anterior, pero no obtuve ningún resultado.
Atentamente
Sofiën
2 ACCEPTED SOLUTIONS
Syndicate_Admin
Administrator
Administrator

@Sofien1234,

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] )
    )
)

View solution in original post

Syndicate_Admin
Administrator
Administrator

@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 )

View solution in original post

4 REPLIES 4
Syndicate_Admin
Administrator
Administrator

@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 )

Syndicate_Admin
Administrator
Administrator

@Sofien1234,

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.

@Sofien1234,

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.

Helpful resources

Announcements
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!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors