This project demonstrates how to optimize inventory using simple Excel tools and formulas.
It is designed as a portfolio project to showcase skills in supply chain analysis, data handling, and visualization.
- Simulated Dataset with 100 products.
- Key Formulas implemented:
- EOQ (Economic Order Quantity)
- Safety Stock
- Reorder Point (ROP)
- Excel Dashboard to visualize:
- Optimal order quantities
- Reorder points
- Inventory cost breakdown
- Stockout risk analysis
- Insights & Recommendations for balancing costs and product availability.
inventory_optimization_plan/
├── data/
│ └── inventory_dataset_100_products.xlsx
│
├── dashboard/
│ └── inventory_dashboard.xlsx
│
├── images/
│ └── dashboard_screenshot.png
│
├── docs/
│ ├── data_dictionary.md
│ ├── kpi_definitions.md
│ └── changelog.md
│
├── README.md
└── LICENSE
- EOQ = √(2DS / H)
- Safety Stock = Z × σd × √L
- ROP = (Average Demand × Lead Time) + Safety Stock
The Excel dashboard (dashboard/inventory_dashboard.xlsx) visualizes KPIs and recommendations.
- Products with higher demand variability require more Safety Stock.
- For slow-moving products, smaller EOQ reduces holding costs.
- Balancing service level vs. costs helps optimize availability.
- The dataset is fully simulated and anonymized.
- Excel files and images are small enough to be uploaded directly.
- For larger binary files, consider using Git LFS.
