- Analysis of a Pizza sales dataset to find out insights like
- Monthly sales trend.
- Whether sales was higher on weekdays or weekends ?
- Peak time on a day when highest orders were received ?
- Best selling pizzas and lowest selling pizzas etc.
- Learning data modeling using Power Pivot in Excel.
- Exploring Excel features to accomplish a data analysis project entirely in Excel.
- Excel Power Query- For data loading.
- Power Pivot in Excel - For data modeling.
- DAX - For data analysis.
- Excel Charts, Pivot Tables and Pivot Charts - To design an interactive dashboard.
Data Integration, Data Modelling, Interactive Dashboard designing.
Dashboard in Excel
FinalDashboardInExcel.mp4
The dashboard is entirely designed in Excel.
4. Designing an Interactive Dashboard
The dataset is collected from Maven Analytics. It contains sales records of a pizza store for the year 2015. It has
- 4 tables.
- 12 dimensions.
- 48620 instances.
Data was integrated using Power Pivot add-on in Excel. 'Order_details' table is the star schema and 'pizza_types' table is a snowflake.
Total orders placed in the year 2015.
Total Orders:=DISTINCTCOUNT(order_details[order_id])
Total sales per order.
Total Sales = Order Quantity * Price per pizza
To calculate this we need to multiply coulmns from different table. So RELATED() function is used.
Total Sales =order_details[quantity]*RELATED(pizzas[price])
Total Revenue in 2015
Total Revenue := SUM([Total Sales])
Average sales per order
Average Sales:=DIVIDE([Total Reveune],[Total Orders],0)
Total pizza sold
Pizza Sold:=SUM(order_details[quantity])
To visualize monthly and weekly sales insights month and weekdays were extracted from the date using FORMAT() function
Day and Month Name from the date column
Day :=FORMAT([date], "DDDD")
Month :=FORMAT([date], "MMM")
- All the charts added to the dashboard are created using pivot tables and pivot charts. And a slicer is used make the dashboard interactive.
- To visualize top and worst selling pizzas a value filter is used in the pivot charts.
- Two dashboards are connected using a hyperlink.