Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hola
Necesito crear una medida para entender el Lead time (total de días entre 2 fechas en la misma tabla excluyendo sábado y domingo)
El nombre de mi tabla es Open Orders
y a continuación están las 2 columnas de fecha
@vjnvinod Solo voy a proponer el ajuste para @amitchandak medida:
Work Day =
COUNTROWS (
FILTER (
ADDCOLUMNS (
CALENDAR ( MAX ( Table[Open on] ), MAX ( Table[Requested Delivery Date] ) ),
"WorkDay", IF ( WEEKDAY ( [Date], 2 ) < 6, 1, 0 )
),
[WorkDay] = 1
)
)
Revisa mi último video sobre Filtros y minigráficos https://youtu.be/wmwcX8HvNxc
Yo lo haría ❤ Elogios si mi solución ayudó. 👉 Si puede dedicar tiempo a publicar la pregunta, también puede hacer esfuerzos para felicitar a quien ayudó a resolver su problema. ¡Es una muestra de agradecimiento!
⚡ Visítenos en https://perytus.com, su ventanilla única para proyectos/formación/consultoría relacionados con Power BI.
@vjnvinod , creo que necesitas días de trabajo
Día laborable = COUNTROWS(FILTER(ADDCOLUMNS(CALENDAR(Table[Open on],Table[Requested Delivery Date]),"WorkDay", if(WEEKDAY([Date],2) <6,1,0)),[WorkDay] =1))
Cómo calcular días hábiles / días hábiles, con o sin tabla de fechas: https://youtu.be/Qv4wT8_P-AA
estaba tratando de replicarlo
Creo que algo anda mal, después de la función calendario, no lee la columna de fecha
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.