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

SUMA del número de fechas

Tengo la siguiente medida que cuenta el número de citas en un día determinado en los próximos 6 meses.

SUM of 6 months appointments = 
IF(
    MAX(Datum[Date]) <= TODAY(),
    CALCULATE(
        SUMX( ALLSELECTED(Datum[Date]), [Rolling 6 month] ),
        DATESINPERIOD(
            Afspraken[Datum afspraak],
            MAX(Afspraken[Datum afspraak]),
            6,
            MONTH
        )
    )
)

Rolling 6 month = CALCULATE(COUNTROWS(Afspraken), DATESINPERIOD(Afspraken[Datum afspraak], TODAY(), 6, MONTH),
FILTER(Afspraken, Afspraken[Status] = "Planned"),
FILTER(Afspraken, Afspraken[Soort afspraak] <> "Phone call"))<p> 

Sin embargo, los valores que obtengo no son correctos, ya que la línea permanece flar durante demasiado tiempo. Cuando compromego manualmente los valores, son incorrectos. ¿Alguien sabe por qué podría ser esto?

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

Hay @Sohan ,

Es mejor compartir algunos datos de muestra y el resultado esperado para que podamos ayudarlo con la fórmula.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Saludos

Arrendajo

Syndicate_Admin
Administrator
Administrator

@Sohan , Prueba como

Rolling 6 month = CALCULATE(COUNTROWS(Afspraken), DATESINPERIOD(Afspraken[Datum afspraak], TODAY(), 6, MONTH),
FILTER(Afspraken, Afspraken[Status] = "Planned" &&  Afspraken[Soort afspraak] <> "Phone call"))

¿Puede compartir datos de muestra y salida de muestra en formato de tabla? O un pbix de muestra después de eliminar datos confidenciales.

@amitchandak ¡Gracias por su respuesta! Desafortunadamente, nada cambia cuando edito el código como usted sugirió.

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