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.
-- 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;