The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 ()
)
)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
1 | |
1 | |
1 | |
1 | |
1 |