Data Analysis With Excel Handbook p1
Data Analysis With Excel Handbook p1
Steps:
1. Insert a new column named Discount (%) between Quantity and Total Sales.
2. Delete the Headphones row.
3. Rename the worksheet to Product Sales.
3. Autofill & Formatting
4. Performing Calculations
This practical covered key Excel operations, including data entry, formatting, calculations,
sorting, filtering, referencing, and conditional formatting. These skills are essential for
analyzing real-world data efficiently.
To use Microsoft Excel functions for text manipulation, date handling, and financial calculations
in a simple business analysis scenario.
Dataset Table
Formula Table
Extract the =LEFT(B2, Extracts the first word from Ad_Text using SEARCH
first word SEARCH(" ", B2)-1) instead of FIND for better error handling.
Find the
weekday of =TEXT(A2, "dddd") Converts the Date into the full weekday name.
the date
Calculate
=ROUND(((D2 - Computes profit percentage and rounds it to two
profit
C2) / C2) * 100, 2) decimal places.
percentage
Solution Steps:
Use LEFT and SEARCH functions to get the first word from Ad_Text.
Example:
Example:
• If A2 = 2025-03-10
• Formula: =TEXT(A2, "dddd")
• Returns: "Monday"
Use the given formula to calculate profit percentage and round the result.
Example:
Conclusion:
By applying these Excel functions, we successfully extracted key insights from business data.
The text function retrieved the first word from ad content, the date function identified the
weekday of each advertisement, and the financial formula calculated the profit percentage. These
formulas improve business analysis efficiency in Excel.
Practical 3: Statistical Analysis in Excel
Aim:
To analyze a dataset using Excel functions for counting items, calculating Mean, Mode, and
Median, and determining Values, Ranks, and Percentiles.
Tablet 90 2,70,000
Smartwatch 80 2,40,000
Camera 60 3,00,000
TV 50 7,50,000
Count total sales entries =COUNT(B2:B11) Counts the total number of sales records.
=COUNTA(A2:A11
Count total products Counts the total number of products.
)
Calculate median sales =MEDIAN(B2:B11) Finds the middle value of sales data.
Rank sales from highest =RANK(B2, Assigns a rank to each product based on
to lowest B2:B11, 0) sales.
Conclusion
This practical covered key Excel statistical functions to analyze data effectively. We used
counting functions to assess data size, statistical functions to calculate mean, median, and
mode, and ranking functions to evaluate percentiles and top values. These functions are
essential for business analytics, performance tracking, and decision-making.
Practical 4: Statistical Analysis – Variance, Standard
Deviation, Regression, and Correlation
Aim: Analyzing Data Using Excel’s Statistical Functions
To calculate variance, standard deviation, regression analysis, and correlation in Excel for
understanding data distribution and relationships.
March 90 2,70,000
May 80 2,40,000
June 60 3,00,000
July 50 7,50,000
1. Use the CORREL function to measure the relationship between sales and revenue:
a. Enter =CORREL(B2:B11, C2:C11).
2. A value close to 1 means a strong positive correlation, close to -1 means a negative
correlation, and around 0 means no correlation.
Conclusion
This practical demonstrated how to analyze data using variance and standard deviation to
measure dispersion, regression analysis to predict trends, and correlation to understand
relationships between variables. These statistical functions are essential for forecasting,
business analytics, and decision-making.
Practical 5: Conditional Functions and Lookup
Functions in Excel
Aim: Implementing Conditional and Lookup Functions in Excel
Departmen Salary
Employee ID Name Experience (Years) Bonus Eligibility
t (₹)
Sures
105 HR 55,000 6 -
h
Roha
107 Sales 40,000 2 -
n
Koma
108 IT 75,000 8 -
l
Sanja
109 Finance 90,000 12 -
y
Kavit
110 HR 50,000 4 -
a
Formula Table
=IF(AND(E2>=5,
Evaluate multiple Checks if experience is 5 or more
D2>=50000), "Eligible", "Not
conditions (AND) AND salary is ₹50,000 or more.
Eligible")
Count employees in IT
department =COUNTIF(C2:C11, "IT") Counts employees working in IT.
(COUNTIF)
Average salary of HR
=AVERAGEIF(C2:C11, "HR", Calculates the average salary of
department
D2:D11) HR employees.
(AVERAGEIF)
Conclusion
This practical demonstrated the use of conditional functions like IF, AND, OR, and conditional
calculations using SUMIF, COUNTIF, and AVERAGEIF. Additionally, lookup functions such
as VLOOKUP, HLOOKUP, and INDEX-MATCH were applied to retrieve specific employee
details. These skills are essential for data filtering, decision-making, and report generation in
Excel.
Practical 6: Data Visualization and Chart
Customization in Excel
Aim: Implementing Charts and Sparklines for Data Representation
To create various types of charts, customize their appearance, and use sparklines to visualize
trends in Excel.
Month Electronics (₹) Clothing (₹) Groceries (₹) Total Sales (₹)
Insert Column Chart for Use Insert → Column Displays sales trends across
Monthly Sales Chart months.
Insert Pie Chart for Category- Use Insert → Pie Shows percentage distribution
wise Sales Chart of sales.
Insert Line Chart for Sales Use Insert → Line Illustrates sales growth over
Trends Chart months.
Apply Sparklines in Total Sales Insert → Sparklines Shows a trend inside a single
Column → Line cell.
1. Change Chart Colors: Click on the chart, go to Chart Tools → Format, and select a
theme.
2. Edit Titles & Labels: Double-click on titles to rename them for clarity.
3. Modify Legend & Axis Labels: Use Chart Elements → Axis Titles to label x-axis and
y-axis properly.
Conclusion
This practical demonstrated various Excel charts like Column, Pie, Line, and Scatter charts
to analyze sales data visually. Additionally, Sparklines were used to show trends inside
individual cells. These techniques help in data visualization, trend analysis, and business
decision-making.