This Tableau dashboard provides real-time insights into the sales performance of a computer hardware business facing challenges in a dynamically changing market. The dashboard covers various key metrics, allowing users to analyze revenue, sales quantity, profit, and other crucial aspects.
- What is the revenue distribution by markets?
- How does sales quantity vary by market?
- How has revenue evolved over the years?
- Who are the top 5 customers contributing to sales?
- What are the top 5 products driving sales?
- What is the overall sales quantity and total revenue?
- What is the profit distribution by markets?
- How does profit margin vary across markets?
- What is the trend in profit over time?
- Who are the key customers impacting profitability?
- Show all customer records
SELECT * FROM customers;
- Show total number of customers
SELECT count(*) FROM customers;
- Show transactions where currency is US dollars
SELECT * from sales.transactions where currency="USD";
- Show transactions in 2020
SELECT* FROM sales.transactions ST INNER JOIN sales.date SD ON ST.order_date= SD.date where SD.year=2020;
- Show total revenue in year 2020 :
SELECT SUM(sales_amount) FROM sales.transactions ST INNER JOIN sales.date SD ON ST.order_date= SD.date where SD.year=2020 and ST.currency="INR";
- Show total revenue in year 2020, January Month :
SELECT SUM(transactions.sales_amount) FROM sales.transactions INNER JOIN sales.date ON transactions.order_date=date.date where date.year=2020 and date.month_name="January";
- Show total revenue in year 2020 in Chennai :
SELECT sum(transactions.sales_amount) FROM sales.transactions join sales.date ON date.date = transactions.order_date where date.year = 2020 and transactions.market_code = 'Mark001';
The primary objective is to provide stakeholders with a comprehensive view of the business's sales performance. By utilizing the dashboard, users can make data-driven decisions, identify market trends, and respond effectively to the evolving landscape.