Skip to the content.

Bernard Joseph Oyakhilome

Sales & Inventory Performance Analysis

This project is a real-world Business Intelligence (BI) analysis focused on retail sales and inventory performance across different locations and customer demographics. Built using Power BI, SQL Server, and Excel Power Query, the dashboard reveals insights that drive actionable business decisions.

📑 Table of Contents

  1. Background and Overview
  2. Data Structure Overview
  3. Executive Summary
  4. Insight Deep Dive: 2023 Performance Drop
  5. Recommendation & Professional Storytelling

Project Structure


1. Background and Overview

In this project, I developed a Sales Performance Dashboard to provide real-time insights into revenue growth, profit margins, and demographic-driven sales behavior across multiple locations.

Key Objectives:

Key Insights:

Strategic Recommendations:


2. Data Structure Overview

Dataset Composition:

ETL Workflow:

-- Calculate Sales and Cost
SELECT
    SbS.*,
    CAST(SbS.quantity_sold AS FLOAT) * CAST(SbS.unit_price AS FLOAT) AS Sales,
    CAST(SbS.quantity_sold AS FLOAT) * CAST(PR.current_cost AS FLOAT) AS Cost
FROM JendolSuperStore.dbo.[Sales by Store] AS SbS
INNER JOIN JendolSuperStore.dbo.Product AS PR
    ON SbS.product_id = PR.product_id;

  
 -- Calculate Age and Age Group
SELECT
    *,
    DATEDIFF(YEAR, birthdate, GETDATE()) AS Age,
    CASE
        WHEN DATEDIFF(YEAR, birthdate, GETDATE()) <= 39 THEN 'Young Adult'
        WHEN DATEDIFF(YEAR, birthdate, GETDATE()) <= 59 THEN 'Middle-Age Adult'
        ELSE 'Old Adult'
    END AS Age_Group
FROM JendolSuperStore.dbo.Customer;


3. Executive Summary

This dashboard offers a clear, high-level overview of business performance, helping decision-makers quickly grasp key insights:


4. Insight Deep Dive: 2023 Performance Drop

Upon examining the Sales Growth Trend Over Time, the line chart clearly shows:

Possible Causes:

Next Steps:


5. Recommendation

This dashboard presents a compelling narrative:

Next Strategic Steps:


Author

Bernard Joseph
Data Analyst
🔗 LinkedIn | 🌐 Portfolio | 📧 Email