Skip to content

Designed a dashboard to display the sales trend and draw meaningful insights that could help the company increase the revenue substanially and also to understand its top contributing products and customers.

Notifications You must be signed in to change notification settings

AKSHATNAREDI/Sales-Analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Sales Insights - Data Analysis using PowerBI & SQL

I am sharing India based Hardware company Sales Insights - A Data Analysis Project performed on PowerBI & SQL in my journey into Data Science.

About Project 👨‍💻

  • Performed India based hardware company sales insights - A Data Analysis project.

  • Developed ETL mappings using SQL to extract the data from unstructured data and transformed it to the staging area to conduct data cleaning and design star schema data model on PowerBI.

  • Developed a dashboard to perform analysis, producing quantitative visualizations to draw valuable insights based on different parameters affecting the company performance year on year and further provide business solutions.

Technologies used ⚙️

  • Advance Excel

  • MySQL

  • Power BI

  • Statistics

Project - India based Hardware company Sales Insights - Data Analysis

Problem Statements

Sales director wants to know the performance of the company in various Indian states & accordingly provide some discount.

  • Q1. Revenue breakdown by cities.

  • Q2. Revenue brekdown by years & months.

  • Q3. Top 5 customers by revenue & sales quantity.

  • Q4. Top 5 Products by revenue.

  • Q5. Net Profit & Profit Margin by Market

Approach - Project Planning & Aims Grid

1. Purpose: What? Why? What do we want to achieve?

To unlock sales insights that are not visible before for sales team for decision support & automate them to reduced manual time spent in data gathering.

2. Stake Holders: Who will be involved?

  • Sales Director,
  • I.T. Team,
  • Customer Service Team,
  • Data & Analytics Team.

3. End Result: What do we want to achieve?

An automated dashboard providing quick & latest sales insights in order to support data driven decision making.

4. Success Criteria: What will be our success criteria?

  • Dashboards uncovering sales order insights with latest data available.
  • Sales team able to take better decision & prove 10% cost savings of total spend.
  • Sales analysts stop data gathering manually in order to save 20% of their business time & reinvest it in value added activity.

Data Analysis Using SQL

  1. Show all customer records

    SELECT * FROM customers;

  2. Show total number of customers

    SELECT count(*) FROM customers;

  3. Show transactions for Chennai market (market code for chennai is Mark001)

    SELECT * FROM transactions where market_code='Mark001';

  4. Show distrinct product codes that were sold in chennai.

    SELECT distinct product_code FROM transactions where market_code='Mark001';

  5. Show transactions where currency is US dollars.

    SELECT * from transactions where currency="USD"

  6. Show transactions in 2020 join by date table.

    SELECT transactions.*, date.* FROM transactions INNER JOIN date ON transactions.order_date=date.date where date.year=2020;

  7. Show total revenue in year 2020.

    SELECT SUM(transactions.sales_amount) FROM transactions INNER JOIN date ON transactions.order_date=date.date where date.year=2020 and transactions.currency="INR\r" or transactions.currency="USD\r";

  8. Show total revenue in year 2020, January Month.

    SELECT SUM(transactions.sales_amount) FROM transactions INNER JOIN date ON transactions.order_date=date.date where date.year=2020 and and date.month_name="January" and (transactions.currency="INR\r" or transactions.currency="USD\r");

  9. Show total revenue in year 2020 in Chennai.

    SELECT SUM(transactions.sales_amount) FROM transactions INNER JOIN date ON transactions.order_date=date.date where date.year=2020and transactions.market_code="Mark001";

About

Designed a dashboard to display the sales trend and draw meaningful insights that could help the company increase the revenue substanially and also to understand its top contributing products and customers.

Topics

Resources

Stars

Watchers

Forks