An open API service indexing awesome lists of open source software.

https://github.com/pranee123/supply_chain_dashboard

A Power BI Supply Chain Dashboard for analyzing purchase orders, and inventory transactions using SQL and Power BI. 🚀
https://github.com/pranee123/supply_chain_dashboard

datacleaning mysql-database powerbi visualization

Last synced: 12 months ago
JSON representation

A Power BI Supply Chain Dashboard for analyzing purchase orders, and inventory transactions using SQL and Power BI. 🚀

Awesome Lists containing this project

README

          

# 📊 Supply Chain Power BI Dashboard
Suplly_chain_dashboard

## 📌 Overview
This repository contains a **Power BI dashboard** that provides insights into supply chain data, including **customer orders, suppliers, products, and revenue analytics**.

---

## 📂 Files in this Repository
- **`SupplyChain_Dashboard.pbix`** → The main Power BI dashboard file.
- **`Dataset_Summary.csv`** → Summary of data sources used in the dashboard.
- **`DAX_Calculations.md`** → List of all DAX measures used.
- **`PowerBI_Report.pdf`** → Exported report from Power BI.

---

## 📊 Dashboard Insights
### ✅ Key Features:
- **Top Customers by Revenue**
- **Best-Selling Products & Suppliers**
- **Total Discount and Savings Analysis**
- **Monthly Revenue Trends**
- **Customer-Supplier Relationship Analysis**

---

## 📈 Data Sources
The dashboard is built using **six tables from the Supply Chain database**:
- **Customer** → Customer details (Name, City, Country)
- **OrderItem** → Products ordered, quantity, and price
- **Orders** → Order details and total amount
- **Product** → Product name, supplier, price
- **Supplier** → Supplier details
- **Calendar** → Date-based calculations

---

## 🛠️ DAX Measures Used
--DAX
Total Revenue = SUM(Orders[TotalAmount])

Top Customers =
VAR CustomerRevenue =
ADDCOLUMNS(
SUMMARIZE(Customer, Customer[FirstName]),
"Revenue", SUMX(RELATEDTABLE(Orders), Orders[TotalAmount])
)
RETURN
TOPN(5, CustomerRevenue, [Revenue], DESC)