Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Estoy escribiendo una fórmula que quiero trabajar así: (item_inventory - suma de cantidad en SO) SI >20 luego caer en "En stock", si <20 luego caer en "Fuera de stock"
Aquí está mi fórmula hasta ahora:
Solved! Go to Solution.
Puede utilizar lo siguiente:
Estado del inventario = IF((SUM('items'[Inventory]) - SUM('Sales_Lines'[Cantidad en SO]))>20,"Existencias","Agotado") )
¡Muchas gracias, eso funcionó!
Puede utilizar lo siguiente:
Estado del inventario = IF((SUM('items'[Inventory]) - SUM('Sales_Lines'[Cantidad en SO]))>20,"Existencias","Agotado") )
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.