πŸ“Š

Inventory Check

Reconcile inventory system data vs physical count Excel files to instantly pinpoint discrepancies.

Excel ⭐⭐ Intermediate ⏱️ 5 minutes

😫 The Pain Point

End of month stock count.

  • System says: SKU-A has 10 units.
  • Warehouse count says: SKU-A has 8 units. Variance is -2. You have 2,000 SKUs. Doing VLOOKUP for 2,000 items is a headache.

πŸš€ Agentic Solution

Automated Reconciliation: Merges the two lists and highlights the operational errors.

Key Features:

  • Diff Report: Only outputs items with differences.
  • Value Calc: Calculates the total financial loss (Diff * Unit Price).

βš”οΈ Phase 1: Commander (Quick Fix)

For a one-time check.

Prompt:

β€œI have System.xlsx and Physical.xlsx. Both have β€˜SKU’ and β€˜Qty’. Merge them on SKU, calculate the difference (System - Physical), and filter only the rows where difference is not 0.”

Result: A variance report.

πŸ—οΈ Phase 2: Architect (Permanent Tool)

For Warehouse Managers.

Engineering Prompt:

**Role:** Python Data Analyst
**Task:** Create an "Inventory Reconciliation Tool".
**Requirements:**
1.  **GUI:**
    *   Select System File.
    *   Select Physical Count File.
    *   "Compare" button.
2.  **Logic:**
    *   Merge DataFrames on 'SKU'.
    *   Fill `NaN` with 0 (Missing items).
    *   Calc Diff.
    *   Highlight rows where Diff != 0.
3.  **Output:** Excel file with filtered discrepancies.
4.  **Deliverables:** `inventory_check.py`, `run.bat` (Windows), `run.sh` (Mac).

🧠 Prompt Decoding

  • Fill Missing: The classic β€œNaN” error. If an item is in the System but missing from the Count file (because count was 0), merging creates a NULL value. The prompt explicitly handles this logic.

πŸ› οΈ Instructions

  1. Copy Prompt -> Paste -> Run.
  2. Load Files -> Compare.

Related Workflows

Explore other categories

πŸ“¬

Get Started with Agentic Working

Subscribe to receive updates from AgenticWorking.io

πŸ“– Free eBook Guide πŸ“¦ 7 Ready-to-use Scripts πŸ”” Weekly Tips

No spam, unsubscribe anytime. Join 1,000+ subscribers.