Dashboard Mode - Solver for optimization
Goal
Find the best number of products to produce to maximize profit without exceeding resource limits.
Find the best number of products to produce to maximize profit without exceeding resource limits.
| Product | Profit per Unit ($) | Resource Used per Unit (hours) |
|---|---|---|
| Product A | 40 | 2 |
| Product B | 30 | 1 |
Resource Limit: 100 hours available
=SUMPRODUCT(B2:B3, D2:D3)=SUMPRODUCT(C2:C3, D2:D3)+----------------------+--------------------+ | KPI: Profit | Input: Units Prod | | (Total Profit $) | Product A | Product B | +----------------------+--------------------+ | Resource Usage | | | (Hours used / 100) | | +----------------------+--------------------+
User changes units to produce in cells D2 and D3. Solver adjusts these values to maximize total profit while keeping resource usage ≤ 100 hours.
Solver setup:
If you add a filter to limit Product B units to 20 max, which components update?