← Back to Projects

Sales Analysis Dashboard

Interactive Power BI dashboard for sales analytics using SQL and AdventureWorks dataset


Project Overview

A comprehensive business intelligence dashboard designed to provide real-time insights into sales performance, regional trends, and product analytics. This project demonstrates end-to-end BI implementation from data extraction to interactive visualization.

Key Focus: Creating actionable insights through interactive dashboards and strategic metrics.


Project Objectives


Data Model

Data Sources

Data Model Structure

Star Schema Data Model


Technologies Used

BI & Visualization

Data


Dashboard Features

1. Executive Summary

2. Sales Analysis

3. Regional Performance

4. Product Analytics

5. Interactive Filters


Screenshots

Sales Summary

[Screenshot 1: Sales Summary]
KPIs displayed at the top with key metrics

DAX Formulas

Measure: Total Sales

TotalSales = SUMX(
    FactSales,
    FactSales[Quantity] * FactSales[UnitPrice]
)

Measure: Sales YoY Growth

SalesYoY = VAR CurrentYear = YEAR(TODAY())
RETURN
    CALCULATE(
        [TotalSales],
        YEAR(FactSales[OrderDate]) = CurrentYear
    )

Measure: Average Order Value

AvgOrderValue = DIVIDE(
    [TotalSales],
    DISTINCTCOUNT(FactSales[OrderID]),
    0
)

Measure: Month-over-Month Growth

MoMGrowth = VAR CurrentMonth = [TotalSales]
    VAR PreviousMonth = CALCULATE(
        [TotalSales],
        DATEADD(DimDate[Date], -1, MONTH)
    )
RETURN
    DIVIDE(CurrentMonth - PreviousMonth, PreviousMonth, 0)

Business Insights

Key Findings

  1. Sales Concentration
    • Top 20% of products generate 80% of revenue
    • Regional variations in product preferences
    • Seasonal patterns observed in Q4
  2. Customer Behavior
    • Average customer lifetime value: [Value]
    • Repeat purchase rate: [%]
    • Customer acquisition cost: [Value]
  3. Growth Opportunities
    • Emerging product categories showing growth
    • Underperforming regions with potential
    • Cross-selling opportunities identified
  4. Performance Metrics
    • Quarter-over-quarter growth: [%]
    • Customer satisfaction metrics: [Value]
    • Order fulfillment rate: [%]

📁 GitHub Repository: [Link to Repository]



← Back to All Projects Have questions? Contact me →