Port Interface KPI Dashboard (Power BI Template)
The Port Interface KPI Dashboard (Power BI Template) is a pre-configured .pbix file designed to visualize and monitor key performance indicators (KPIs) at the interface between port operations and mine logistics—specifically tracking vessel turnaround time, berth utilization, stockyard throughput, and rail/truck interface efficiency. It integrates structured data from ERP, TOS (Terminal Operating Systems), and logistics scheduling platforms to enable real-time operational decision-making. Built for scalability and domain-specific context, it follows mining industry data models and port interface SLA benchmarks.
📖 Overview
📑 Key Components
🎯 Applications
- ✓ Reducing demurrage costs via proactive berth scheduling
- ✓ Optimizing stockyard stacking strategies based on vessel arrival forecasts
- ✓ Benchmarking third-party logistics providers against SLA KPIs (e.g., rail wagon loading cycle time)
📐 Key Formulas
Vessel Turnaround Time (VTT)
DATEDIFF('Vessels'[BerthInTime], 'Vessels'[DepartureTime], MINUTE) / 60
Calculates total elapsed hours from vessel berthing to departure, inclusive of loading/unloading, customs, and waiting time.
Berth Utilization Rate
DIVIDE(SUMX('BerthEvents', DATEDIFF('BerthEvents'[InTime], 'BerthEvents'[OutTime], SECOND)), COUNTROWS('Berths') * 24 * 60 * 60, 0)
Measures % of total available berth-hours actively used across all berths in a given period.
Stockyard Throughput Velocity
DIVIDE(SUM('Stockyard'[MovedTonnes]), DATEDIFF(MIN('Stockyard'[Timestamp]), MAX('Stockyard'[Timestamp]), DAY), 0)
Quantifies average daily tonnage moved within the stockyard (in/out), indicating handling system responsiveness.