This page provides visualizations and analysis of various challenges faced by the company, with corresponding SQL queries and code blocks available in the subpages. Details on specific strategies used to improve data retrieval efficiency can be found in the page, while a summary of queries and key questions per use case are found towards the end of this page. 💵 Regional Revenue Growth Analysis
Every month, the Chief Operating Officer meets with the regional managers overseeing the four key areas of the business. Each region plays a crucial role in the company's overall performance and spans diverse geographical locations across the United States: Atlantic encompasses the northeastern states, Interior covers central US, Pacific includes the western states, and Gulf comprises southern states.
To facilitate these discussions and enhance strategic planning, the COO emphasizes the need for accurate, timely data. As such, SQL queries were developed to enable each regional manager to easily extract information on revenue shares, compound yearly and monthly growth, as well as month-over-month (MoM) and year-over-year (YoY) growth metrics.
Revenue Shares
Compound Yearly and Monthly Growth
Atlantic’s CMGR decline from 52.79% in March 2024 to 35.28% in December highlights an ongoing struggle to sustain growth over the past three years.
MOM and YOY Growth
📊 Forecasting Method Evaluation
It was found that Division Leads have been using inconsistent forecasting methods to project revenue, prompting the COO to standardize the process. Implementing a unified approach will ensure greater accuracy, consistency, and comparability across divisions, leading to better decision-making and resource allocation.
This section evaluates Moving Average, Exponential Smoothing, and Seasonal Ratio forecasts using two performance metrics. Pilot experiments are focused on the Chocolates and Other divisions, as Sugar revenue has been erratic, with sales recorded in only 21 out of 48 months over the past four years. Moreover, margins are assumed to be constant, so any revenue changes can be attributed to demand rather than operational factors.
Performance Metrics
Forecasting Methods
Findings
Conclusion and Recommendations
Despite the COO's intention to quickly standardize forecasting methods, it is evident that consumer behavior in the Chocolates and Others divisions differs significantly based on the available data.
Utilizing the seasonal method for the Others division would likely lead to inflated sales projections for most months, resulting in resource misallocation. Although the 6-month moving average demonstrates only a Mean Squared Error (MSE) of +593.65 and a Mean Absolute Error (MAE) of +0.39 relative to exponential smoothing, it should still be avoided due to its tendency to underproject sales. This could jeopardize the company’s ability to meet demand and risk losing market share to competitors. Therefore, exponential smoothing with an alpha of 0.4 is recommended for the Others division.
Meanwhile, the Chocolates division relies more heavily on historical seasonal patterns rather than recent market conditions, making the percentage of year method more suitable for this segment.
Further research could be beneficial to identify a unified forecasting method that accommodates the distinct characteristics of both divisions.
Revenue comparison. The revenue for the Others division is significantly lower than that of Chocolates. By enhancing our understanding of consumer behavior, we can identify trends more effectively, motivating Division Managers to increase sales and better meet market demand. Parameter optimization. While parameter optimization has been conducted for both Chocolates and Others collectively, it’s essential to recognize that the ideal number of months and alpha value may differ for each division. Future studies should focus on analyzing these parameters separately to enhance accuracy. Revenue estimation methodology. Current revenue estimations are derived from carrying forward the growth rate and actual revenue from the previous year. Implementing Compound Annual Growth Rate (CAGR) could yield a more precise total revenue figure for establishing seasonal ratios. Forecasting methodvariations. To enhance forecasting precision, consider adopting variations of the current methods:
🛒 Product Line Discontinuation
Confronted with economic challenges and logistical constraints, the leadership team has resolved to streamline the product portfolio and focus on their core offerings, strengthening their lead in markets and segments where they are already winning.
The difficult but necessary choice will involve shutting down an entire category due to the costs associated with operating underutilized factories. Additionally, to enhance overall profitability, they plan to eliminate less lucrative products from another line. Finally, the team is also committed to developing more granular product classifications that will not only deepen their understanding of the company's offerings but also facilitate more informed decision-making and precise statistical analyses in the future. Sales Target Accomplishment
Product Discontinuation
Product Classifications
🏭 Factory Proximity Optimization
Following the earlier decision to discontinue Sugar products, two of the five factories will be left without any products to produce. This section makes the case for repurposing these facilities to manufacture top revenue-generating products from other factories.
It’s important to emphasize that the analysis focuses solely on factory utilization and the transportation challenges associated with delivering to distant states. A more comprehensive evaluation could incorporate actual financial data, such as the net present value of shutting down a plant versus maintaining operations with new equipment that requires upfront investment.
Current factory-product assignments are 1:1. This section proposes some products to be produced in multiple factories.
Problem
Recommendations
To tackle this issue, the two facilities that were fully / partially vacated as part of the product portfolio restructuring can be utilized.
For instance, Illinois ranks among the top five income-generating states for Lot’s O’ Nuts and sixth for Wicked Choccy, yet the state-factory distances are significant, measuring 2,191.92 km and 1,171.66 km, respectively.
In contrast, Secret Factory is located within Illinois, resulting in an average distance of only 228.1 km to in-state customers.
While manual comparisons can be effective, coding can facilitate matches beyond the top 10 lists presented here.
❔Use Case Summary