1
TABLE OF CONTENTS
S NO TOPIC PAGE NO
1 INTRODUCTION
2 MEASURES OF CENTRAL TENDENCY
3 MEASURES OF DISPERSION
4 CORRELATION – KARL PEARSON’S COEFFICIENT
5 REGRESSION ANALYSIS USING EXCEL
6 FORECASTING USING EXCEL
7 CONCLUSION
2
[Link]
Business Analytics is the strategic practice of using statistical methods, quantitative analysis,
and technology to transform data into actionable insights for informed decision-making. In a
competitive landscape, organizations leverage these data-driven approaches to optimize
operations, forecast trends, mitigate risks, and enhance overall performance. Data is now a
pivotal asset, and the ability to analyse and interpret it is an essential skill for modern
professionals.
Microsoft Excel remains a cornerstone tool in this field, prized for its accessibility, versatility,
and powerful built-in capabilities. It enables users to perform key analytical tasks—from
calculating basic statistics and measuring data variability to identifying relationships,
building predictive models, and creating clear visualizations—without requiring advanced
software. This makes Excel an ideal platform for developing foundational analytical skills.
This assignment provides a practical application of core statistical techniques using Excel,
illustrated with real-world examples and compact datasets:
Measures of Central Tendency (Mean, Median, Mode): Identify the central or
typical value in a dataset to understand average performance.
Measures of Dispersion (Range, Variance, Standard Deviation, Quartiles): Assess
the spread, variability, and consistency of data points around the average.
Correlation Analysis (Karl Pearson’s Coefficient): Quantify the strength and
direction of the relationship between two variables, such as advertising spend and
sales.
Regression Analysis: Develop predictive models to understand how an independent
variable (e.g., experience) influences a dependent variable (e.g., salary).
Forecasting ([Link], TREND): Project future values based on
historical patterns, supporting critical planning in sales, inventory, and budgeting.
Through step-by-step calculations, formula applications, and interpretation of results, this
report demonstrates how Excel serves as a powerful and practical tool for business analytics.
Mastering these fundamental techniques provides a critical foundation for advanced analysis
and effective problem-solving in any business context.
3
Figure 1: Overview of Business Analytics Process using Excel
2. MEASURES OF CENTRAL TENDENCY
Measures of Central Tendency are statistical techniques used to identify the central or typical
value in a dataset. They summarize the entire data into a single value that represents the
overall trend. The three most common measures are:
Mean (Average): The arithmetic sum of all values divided by the number of
observations.
Median: The middle value when data is arranged in ascending or descending order.
Mode: The most frequently occurring value in the dataset.
These measures help businesses understand general performance, compare values, and make
decisions.
4
Dataset (Monthly Sales of a Retail Shop)
Excel Formulas Used
Average: =AVERAGE(B2:B11)
Median: =MEDIAN(B2:B11)
Mode: =[Link](B2:B11)
OUTPUT
5
INTERPRETATION
Analysis of the monthly sales data offers key insights into the business’s revenue patterns
over the year:
Mean (Average) Sales: ₹17,419
o Represents the overall average monthly sales.
o Useful for annual financial planning, budgeting, and performance comparison.
o Can be influenced by unusually high or low values.
Median Sales: ₹16,820
o The middle value in the sorted dataset, lying close to the mean.
o Indicates a relatively symmetric distribution with a slight positive skew.
o Reliable for evaluating typical monthly performance as it is unaffected by
outliers.
Mode: Not Applicable
o No repeating sales values, which is common in continuous data like sales.
o Reflects natural variations due to seasonality or market fluctuations.
Implications for Decision-Making
Mean is best for long-term projections and top-level analysis.
Median is better for setting realistic monthly sales targets.
Conclusion
The close alignment of mean and median shows consistent central performance, with a few
strong months pulling the average higher. Management should aim to keep performance at or
above the median while analysing and replicating the conditions that drove peak sales
months.
6
3. MEASURES OF DISPERSION
Measures of Dispersion describe how spread out or scattered the data values are around the
central tendency (mean/median). While central tendency summarizes the “center” of data,
dispersion tells us about the variability or consistency in the dataset. These measures are
essential for assessing the reliability of the average and understanding the level of uncertainty
or risk in the data.
Common measures include:
Minimum (MIN) & Maximum (MAX): Show the lowest and highest values.
Range: Difference between maximum and minimum.
Quartiles: Divide the dataset into four equal parts.
Variance (VAR): Average squared deviation from the mean.
Standard Deviation (STDEV): Shows the typical distance of data from the mean.
Skewness (SKEW): Indicates whether data is symmetric or skewed to left/right.
Together, these metrics provide a comprehensive view of data distribution, helping to identify
outliers, assess consistency, and inform risk-aware decision-making.
Dataset (Student Marks in Mathematics – out of 100)
Excel Formulas Used
Minimum: =MIN(B2:B11)
Maximum: =MAX(B2:B11)
7
Quartile 1 (Q1): =[Link](B2:B11,1)
Quartile 2 (Median/Q2): =[Link](B2:B11,2)
Quartile 3 (Q3): =[Link](B2:B11,3)
Variance: =VAR.S(B2:B11)
Standard Deviation: =STDEV.S(B2:B11)
Skewness: =SKEW(B2:B11)
OUTPUT
8
Interpretation
The minimum mark (58) and maximum mark (96) show the overall range of
student performance.
The range (38) highlights a moderate gap between the lowest and highest scores.
Quartile 1 (73.5) and Quartile 3 (88) indicate that 50% of students scored between
73.5 and 88, showing strong mid-level performance.
The median (79.5) confirms that the central student score is around 80, close to the
mean.
The variance (137.16) and standard deviation (~11.71) suggest a moderate spread
around the average; most students’ scores fall within ±12 marks of the mean.
The skewness (-0.38) shows a slight negative skew, meaning more students scored on
the higher side, with only a few lower marks pulling the distribution slightly left.
Conclusion
Overall, the dataset shows consistent performance with moderate variation. Most students
scored within the 70–90 range, with only a few lower marks (58 and 67) creating mild
imbalance. This indicates a generally strong class performance with limited outliers.
4. CORRELATION – KARL PEARSON’S COEFFICIENT
Introduction
9
Correlation is a statistical measure that shows the strength and direction of the relationship
between two variables. Karl Pearson’s Correlation Coefficient (r) ranges from –1 to +1:
+1 → Perfect Positive Correlation (as one increases, the other also increases).
–1 → Perfect Negative Correlation (as one increases, the other decreases).
0 → No Correlation (no relationship).
In business, correlation is useful for understanding how one factor influences another, e.g.,
how advertising expenditure affects sales revenue.
Dataset (Advertising Expenditure vs Sales Revenue)
10
Excel Formula Used
To calculate Pearson’s correlation coefficient:
=CORREL(B2:B13, C2:C13)
(Here column B = Advertising Expenditure, column C = Sales Revenue)
OUTPUT
11
Interpretation
The calculated Pearson correlation coefficient (r) = 0.998 indicates an almost
perfect positive linear relationship between advertising expenditure and sales
revenue.
This means that as advertising expenditure increases, sales revenue also rises in a very
consistent and predictable manner.
The closeness of r to +1 shows that sales growth is strongly dependent on
advertising investment.
Month-to-month variations follow a similar pattern, confirming that advertising is a
key driver of revenue.
Conclusion
The analysis proves that advertising expenditure and sales revenue are highly positively
correlated. Management can confidently use advertising as a lever to boost sales. By
12
strategically allocating higher budgets to advertising, the business can expect a proportional
and significant increase in sales revenue.
5. REGRESSION ANALYSIS USING EXCEL
Regression analysis is a statistical method used to examine the relationship between a
dependent variable (Y) and one or more independent variables (X). In business, it helps
predict future values and understand how strongly independent factors influence outcomes.
In this example, we study the relationship between Years of Experience (X) and Salary (Y).
A simple linear regression model is used:
Y=a+bXY = a + bXY=a+bX
Where:
Y = Predicted Salary
a = Intercept (base salary when experience = 0)
b = Slope (increase in salary per additional year of experience)
Dataset (Experience vs Salary)
Excel Formulas Used
Slope (b):
=SLOPE(C2:C11, B2:B11)
13
Intercept (a):
=INTERCEPT(C2:C11, B2:B11)
OUTPUT
Interpretation
The regression analysis indicates a strong linear relationship between experience
and salary.
The slope (31.9) shows that for every additional year of experience, salary increases
by approximately ₹32,000.
The intercept (201) represents the base salary (₹201,000) when experience is zero,
meaning even freshers receive a starting package.
The model is consistent, as the predicted salaries align closely with actual values in
the dataset.
Conclusion
The regression model demonstrates that experience is a key determinant of salary growth.
With each passing year, employees can expect a steady increment, making this a reliable tool
for HR in salary forecasting and planning. The equation provides a data-driven framework to
set fair pay scales and predict future compensation trends.
6. FORECASTING USING EXCEL
Forecasting is the process of predicting future values based on historical data. In business,
sales forecasting is crucial for planning inventory, setting targets, budgeting, and
14
resource allocation. Excel provides built-in functions like =[Link]() and
=TREND() to project future values from past data trends.
Dataset (Monthly Sales – ₹ ’000)
Excel Formulas Used
If we assign months 1–12 to Jan–Dec, we can predict the next 3 months (13–15):
Forecast January (Month 13):
=[Link](13, B2:B13, A2:A13)
Forecast February (Month 14):
=[Link](14, B2:B13, A2:A13)
Forecast March (Month 15):
=[Link](15, B2:B13, A2:A13)
OUTPUT
15
Interpretation
The forecasted sales values for the next 3 months are:
o January (Month 13): ₹460,000
o February (Month 14): ₹480,000
o March (Month 15): ₹500,000
The trend shows a steady and consistent upward growth in sales.
The increase is approximately ₹20,000 per month, aligning with the past trend
observed in 2023 data.
The model suggests that the business is experiencing stable growth without sharp
fluctuations.
CONCLUSION
16
The forecasting analysis indicates a positive sales trajectory for the upcoming quarter, with
sales expected to reach half a million rupees by March. This trend supports confident
planning for production, inventory, and financial targets. Management can rely on these
projections to allocate resources effectively and set achievable sales goals.
7. CONCLUSION
This assignment demonstrated the application of fundamental Business Analytics
techniques using Microsoft Excel. Each method provided valuable insights into different
aspects of data analysis:
Measures of Central Tendency summarized the dataset with mean, median, and
mode, highlighting the typical sales performance.
Measures of Dispersion explained the variability in student marks, showing how
values spread around the average.
Correlation Analysis revealed a strong positive relationship between advertising
expenditure and sales revenue, confirming the impact of marketing investments on
business growth.
Regression Analysis built a predictive equation for salary based on years of
experience, providing a reliable model for compensation planning.
Forecasting projected future sales using past data, helping in planning, budgeting,
and setting realistic business targets.
Overall, the results confirm that Excel is a powerful and practical tool for business
decision-making. By applying statistical techniques, organizations can transform raw data
into actionable insights, enabling them to improve efficiency, predict future trends, and make
informed strategic choices.
17