
This project analyzes chocolate sales data from 2023–2024 to understand sales performance, identify trends, and monitor key business metrics through an interactive dashboard.
The goal of this project is to transform raw sales data into clear insights that help management understand business performance and identify growth opportunities.
The dataset consists tables: Calendar, Customer, Products, Sales, and Stores.
The data was prepared using Power Query in Power BI.
Steps performed:
Relationships were created between tables to allow proper filtering and aggregation: Calendar → Sales Customers → Sales Products → Sales Stores → Sales This structure enables accurate time-based and category-based analysis.

Several measures were created using DAX: Member Duration = DATEDIFF(customers[join_date],TODAY(),YEAR) Member Status = if(customers[loyalty_member]=1,"Member","Non Member") Profit Margin = divide(sum(sales[profit]),sum(sales[revenue])) Profit per transaction = divide (sum(sales[profit]),DISTINCTCOUNT(sales[order_id])) Revenue per person = divide (sum(sales[revenue]),DISTINCTCOUNT(sales[customer_id])) Revenue per transaction = divide (sum(sales[revenue]),DISTINCTCOUNT(sales[order_id])) Total Transaction = DISTINCTCOUNT(sales[order_id]) Transaction per person = divide(DISTINCTCOUNT(sales[order_id]),DISTINCTCOUNT(sales[customer_id]))