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
¡Saludos!
Tengo problemas para conseguir días acumulados de Max.
Para calcular la misma he utilizado la siguiente medida:
Esto me da días máximos, pero no el resultado acumulativo.
He cargado PBIX & Excel archivo de datos de ejemplo como referencia
https://drive.google.com/drive/folders/1m3uGRUPN28hqKPab2oYSmzO91z9t0BT3?usp=sharing
Esperamos una guía rápida, por favor.
Gracias y saludos,
Pg
Solved! Go to Solution.
@pankajj
No he llegado exactamente lo que está tratando de hacer, pero esta medida le dará lo que necesita
Cumulative Max Days =
CALCULATE(
COUNT(Dates[Date]),
FILTER(
ALLSELECTED(Dates),
Dates[Date] < MAX(Dates[Date] )
)
)
________________________
Si mi respuesta fue útil, considere Aceptarla como la solución para ayudar a los otros miembros a encontrarla
Haga clic en el icono Thumbs-Up si le gusta esta respuesta 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks a ton for your kind help. It worked perfectly with the sample file i shared.
In the meantime i created following measures to get the desired result in my existing data.
Open =
VAR
d = max(Dates[Date])
RETURN
calculate(
CALCULATE(count(SN[ID])+0,
SN,
SN[Created]<=d
),
crossfilter(SN[Created],Dates[Date],None)
)
OLDEST_Open_Date =
VAR
d = MAX(Dates[Date])
RETURN
CALCULATE(
FORMAT(CALCULATE(MIN(SN[Created]),
SN,
SN[Created]<=d),
"Short Date"
),
CROSSFILTER(SN[Created],Dates[Date],None)
)
Cumulative_Max_Days =
Var
d = Max(Dates[Date])
RETURN
CALCULATE(if([Open]>0,DATEDIFF(SN[OLDEST_Open_Date],d,Day),0))
@pankajj
Para Total acumulado, debe utilizar la SUMA
Cumulative Max Days =
CALCULATE(
SUM(SN[DaysTillToday]),
FILTER(ALL ('Dates'), 'Dates'[Date] <= MAX('Dates'[Date]))
)
________________________
Si mi respuesta fue útil, considere Aceptarla como la solución para ayudar a los otros miembros a encontrarla
Haga clic en el icono Thumbs-Up si le gusta esta respuesta 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Gracias por su respuesta rápida.
El uso de Sum en la medida me da el siguiente resultado:
Sin embargo, estoy buscando un resultado que debería ser algo así como:
Fecha | Días máximos acumulados |
Septiembre21 2020 | 13 |
Septiembre20 2020 | 12 |
Septiembre19 2020 | 11 |
Septiembre18 2020 | 10 |
Septiembre17 2020 | 9 |
Septiembre16 2020 | 8 |
Septiembre15 2020 | 7 |
Septiembre14 2020 | 6 |
Septiembre13 2020 | 5 |
Septiembre12 2020 | 4 |
Septiembre11 2020 | 3 |
Septiembre10 2020 | 2 |
Septiembre09 2020 | 1 |
Septiembre08 2020 | 0 |
@pankajj
¿Puede compartir datos de ejemplo de la fecha y la tabla de hechos, es acumulativo días máximos una medida?
________________________
Si mi respuesta fue útil, considere Aceptarla como la solución para ayudar a los otros miembros a encontrarla
Haga clic en el icono Thumbs-Up si le gusta esta respuesta 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
I have uploaded PBIX & Excel sample data file for reference
https://drive.google.com/drive/folders/1m3uGRUPN28hqKPab2oYSmzO91z9t0BT3?usp=sharing
Thanks once again for your help.
@pankajj
No he llegado exactamente lo que está tratando de hacer, pero esta medida le dará lo que necesita
Cumulative Max Days =
CALCULATE(
COUNT(Dates[Date]),
FILTER(
ALLSELECTED(Dates),
Dates[Date] < MAX(Dates[Date] )
)
)
________________________
Si mi respuesta fue útil, considere Aceptarla como la solución para ayudar a los otros miembros a encontrarla
Haga clic en el icono Thumbs-Up si le gusta esta respuesta 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks a ton for your kind help. It worked perfectly with the sample file i shared.
In the meantime i created following measures to get the desired result in my existing data.
Open =
VAR
d = max(Dates[Date])
RETURN
calculate(
CALCULATE(count(SN[ID])+0,
SN,
SN[Created]<=d
),
crossfilter(SN[Created],Dates[Date],None)
)
OLDEST_Open_Date =
VAR
d = MAX(Dates[Date])
RETURN
CALCULATE(
FORMAT(CALCULATE(MIN(SN[Created]),
SN,
SN[Created]<=d),
"Short Date"
),
CROSSFILTER(SN[Created],Dates[Date],None)
)
Cumulative_Max_Days =
Var
d = Max(Dates[Date])
RETURN
CALCULATE(if([Open]>0,DATEDIFF(SN[OLDEST_Open_Date],d,Day),0))
Lo sentimos por el error, el formato Html ha cambiado el contenido de la tabla.
Estoy buscando un resultado similar a :
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.