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
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?
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
@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ó.
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.