LibraryInventory Manager
PROoperations
Inventory Manager
The Inventory Manager is a ready-made stock screen for Power Apps: KPI tiles for total SKUs, total quantity, low-stock alerts and locations, plus a stock table that flags items below their minimum — all computed live from a single collection and rendered as one SVG Image. No PCF, no premium connectors.
SKUs
16
Qty
210
Alerts
4
Sites
3
Sensor Module12Low
Safety Goggles8Low
Steel Bolts M8150OK
YAML source
Preview — full code with PRO# Inventory Manager — PowerBlocks (PRO Screen)
# A stock dashboard rendered as a single data-driven Power Fx SVG Image: KPI tiles
# (SKUs, total quantity, low-stock alerts, locations) and a stock table with a
# color-coded status, all computed from one collection.
#
# STEP 1 — In Screen.OnVisible (or App.OnStart):
# ClearCollect(
# colInventory,
# { Item: "Industrial Sensor", Location: "Main WH", Qty: 12, Min: 25 },
# { Item: "Safety Goggles Pro", Location: "Berlin", Qty: 8, Min: 50 },
# { Item: "Isopropyl Alcohol", Location: "Frankfurt", Qty: 18, Min: 30 },
# { Item: "Bearing Assembly", Location: "Main WH", Qty: 22, Min: 40 },
# { Item: "Steel Bolts M8", Location: "Frankfurt", Qty: 150, Min: 100 }
# );
# … full component definition unlocked with PROThis is a partial preview. Unlock the full component →
Common use cases
Stock dashboards
Monitor quantities, low-stock alerts and locations at a glance.
Warehouse apps
Give operators a clear list of what needs reordering.
Asset tracking
Track counts across sites with automatic alert thresholds.
How to use Inventory Manager in Power Apps
- 1Add the colInventory collection to Screen.OnVisible (see the YAML header).
- 2Choose your locale (EN or FR) and click "Copy YAML".
- 3Paste the control onto a blank screen.
- 4Swap colInventory for your stock table — KPIs and the Low-stock flag recompute automatically.
Tip — The status turns red when Qty < Min — change that rule to add reorder thresholds, and pair with the Data Table for an editable stock list.