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
Hola
Le gustaría buscar su ayuda en lo siguiente.
si Prioridad = 2 horas, entonces Pase, si no 2 horas, entonces falló,
si Prioridad = 4 horas, entonces Pase, si no 4 horas, entonces falló
Muchas gracias por sus respuestas. Que dios te bendiga
¿Qué tal si la prioridad y la duración están en una mesa diferente?
eso funcionó. Muchas gracias. 🙂
¡Hola!
Prueba algo como esto:
SWITCH(
SELECTEDVALUE( Priority ),
"2 hours", "Pass",
"4 hours", "Pass",
"failed"
)
Si tu columna de prioridad es numérica, no uses comillas dobles.
¡Hágame saber si eso ayuda!
Hola, en bo la fórmula debe ser:
if (priority = p1, then (if duration <= 2, "pass", "fail") elseif (priority=p2, then (if duration >=4, "pass", "fail")
else "null"
Prueba esto:
IF (
priority = "p1",
IF (
duration <= 2,
"Pass",
"Fail"
),
IF (
priority = "p2",
IF (
duration <= 4,
"Pass",
"Fail"
),
BLANK ()
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!