Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Estimados todos
Estoy usando la siguiente fórmula, para crear Categoría usando la columna Envejecimiento del inventario
Solved! Go to Solution.
@vjnvinod prueba esto:
Category =
VAR __days = 'Open Orders'[InventoryAgeing]
RETURN
SWICH ( TRUE(),
ISBLANK ( __days ), "No Conclusion",
__days < 0, "Production Delay",
__days > 0, "Delayed Sales",
__days = 0, "Good Business"
)
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 prueba esto:
Category =
VAR __days = 'Open Orders'[InventoryAgeing]
RETURN
SWICH ( TRUE(),
ISBLANK ( __days ), "No Conclusion",
__days < 0, "Production Delay",
__days > 0, "Delayed Sales",
__days = 0, "Good Business"
)
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.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.