☕ Coffee Shop Sales Analysis – SQL + Power BI

This project analyzes the daily and product-level performance of a coffee shop using Power BI and SQL. The analysis uncovers trends in sales, top-performing products, and customer behavior, providing actionable business insights.


📌 Project Objective

🔧 Tools & Technologies Used


📊 Dashboard Preview

Coffee Shop Sales Dashboard GIF Coffee Screenshot 1 Coffee Screenshot 2 Coffee Screenshot 3 🔗 View Dashboard (Power BI Access Required)

📈 Key KPIs

-- Total Revenue
SELECT SUM(Sales) AS Total_Revenue FROM coffee_shop;

-- Total Quantity
SELECT SUM(Quantity) AS Total_Quantity FROM coffee_shop;

-- Gross Profit
SELECT SUM(Profit) AS Total_Profit FROM coffee_shop;

-- Top Products
SELECT TOP 5 Product, SUM(Sales) AS Total_Sales
FROM coffee_shop
GROUP BY Product
ORDER BY Total_Sales DESC;

📊 Dashboard Features

💡 Business Insights


📬 Contact

🔗 View GitHub Repository