📦 Resource excel

BOM Cost Roll-Up Excel Model with Duty & Logistics Calculators

A BOM Cost Roll-Up Excel Model with Duty & Logistics Calculators is a structured spreadsheet tool that aggregates component-level costs—including material, labor, overhead, import duties, freight, insurance, and customs fees—to compute total landed cost per finished good or subassembly. It enables dynamic, hierarchical cost propagation from raw materials through manufacturing and global supply chain stages. The model supports scenario analysis, sourcing decisions, and margin optimization by integrating tariff classification logic (e.g., HTS codes), Incoterms-based logistics assumptions, and multi-currency conversion.

📖 Overview

This Excel resource implements a hierarchical Bill of Materials (BOM) structure where each parent item (e.g., final product) references child components with quantities, unit costs, and sourcing attributes (e.g., country of origin, supplier location). Cost roll-up occurs recursively: the total cost of a parent item equals the sum of its direct component costs plus allocated manufacturing overhead, plus applicable import duties (calculated as a percentage of CIF or FOB value based on Harmonized Tariff Schedule (HTS) codes), and logistics surcharges (e.g., ocean freight per kg, customs brokerage fees, duty drawback eligibility). The model typically employs Excel’s native features—structured tables, named ranges, XLOOKUP/VLOOKUP for tariff lookups, Data Validation for Incoterm selection, and conditional formatting for cost outliers—while avoiding volatile functions to ensure scalability. Advanced versions incorporate sensitivity dashboards, currency conversion using real-time or historical exchange rates (via Power Query or API-linked web queries), and audit trails for cost assumptions. Practically, it bridges engineering BOMs (eBOM) and manufacturing BOMs (mBOM) by mapping design intent to procurement reality, enabling cross-functional alignment between procurement, finance, logistics, and product management teams during new product introduction (NPI) or cost-reduction initiatives.

📑 Key Components

1 Hierarchical BOM Structure
2 Duty Calculation Engine (HTS/HS Code Lookup)
3 Logistics Cost Calculator (Freight, Insurance, Customs Fees)

🎯 Applications

  • Global Sourcing Decision Support
  • Landed Cost Analysis for Margin Assurance
  • Tariff Engineering and Supply Chain Optimization

📐 Key Formulas

Landed Cost per Unit

SUM(Components_Cost * Quantity) + Manufacturing_Overhead + (CIF_Value * Duty_Rate) + Freight_Cost + Insurance_Cost + Customs_Brokerage

Total cost to deliver one unit of finished good to destination warehouse, inclusive of all duties and logistics expenses.

Import Duty

IF(Origin_Country = Domestic, 0, MAX(0, MIN(CIF_Value * Duty_Rate, Duty_Ceiling)))

Calculated import duty based on CIF value and applicable HTS-specified ad valorem or specific rate; includes ceiling caps and preferential trade agreement logic.

Ocean Freight Allocation

(Weight_kg * Freight_Rate_per_kg) + (Volume_m3 * Freight_Rate_per_m3) + Fixed_Surcharge

Allocates multimodal freight cost to individual BOM items based on weight, volume, and fixed handling charges.

🔗 Related Concepts

Harmonized System (HS) Code Classification Incoterms® 2020 Rules Total Landed Cost (TLC)

📚 References

#BOM #landed-cost #tariff-analysis #supply-chain-finance #Excel-modeling