Mastering Data Cleaning Using Excel: A Step-by-Step Guide with Examples

Sanderson Labousse
4 min readAug 11, 2023
Photo by Lukas Blazek on Unsplash

Data is the cornerstone of informed decision-making in today’s world. However, before you can gain meaningful insights from your data, you need to ensure its accuracy and reliability through a process called data cleaning. In this comprehensive guide, we’ll walk you through the art of data cleaning using the powerful tools and functions of Microsoft Excel, accompanied by real-world examples.

Master Excel From A to Z

Step 1: Importing Your Data

Let’s start by importing a sample dataset containing information about customers.

Open Excel: Launch Microsoft Excel and open a new workbook.

Import Data: Go to the “Data” tab and click on “From Text/CSV.” Select the sample dataset file (“customers.csv”) from your computer.

Text Import Wizard: If needed, use the Text Import Wizard to specify the delimiter (comma, tab, etc.) and data format.

Step 2: Initial Assessment

Suppose our dataset has columns for “Name,” “Age,” “Email,” and “Purchase History.”

Review Data Structure: Take a look at the first few rows to understand the data’s structure and content.

Duplicate Removal: Let’s identify and remove duplicates in the “Email” column.

Highlight the “Email” column.

Go to the “Data” tab, click “Remove Duplicates.”

Choose only the “Email” column and click “OK.”

Master Excel From A to Z

Step 3: Handling Missing Data

Now, let’s address missing data in the “Age” column.

Identify Missing Values: Use conditional formatting to highlight cells with missing “Age” values.

Select the “Age” column.

Go to “Home” > “Conditional Formatting” > “New Rule.”

Choose “Format cells that contain,” set the condition to “Blanks,” and apply a highlight.

Fill Missing Values: We’ll fill in missing “Age” values with the median age.

Calculate the median age using the formula “=MEDIAN(B2:B100)” (assuming data is in rows 2 to 100).

Select the “Age” column and press Ctrl + H (Find and Replace).

Replace all blank cells with the calculated median.

Step 4: Formatting and Standardization

In the “Name” column, some entries are in all uppercase. Let’s convert them to proper case.

Text to Proper Case: Create a new column “Proper Name” adjacent to the “Name” column.

In the first cell of the “Proper Name” column, use the formula “=PROPER(A2)” (assuming “Name” data is in column A).

Drag the fill handle down to apply the formula to all rows.

Date Formatting: Suppose the “Purchase History” column contains dates in different formats.

Select the “Purchase History” column.

Go to “Data” > “Text to Columns.”

Choose “Delimited” and specify the appropriate delimiter (e.g., comma or space).

Select the desired date format under “Column data format.”

Master Excel From A to Z

Step 5: Correcting Inaccuracies

Let’s address a common issue: misspelled email domains in the “Email” column.

Find and Replace: Correct misspelled domains.

Select the “Email” column.

Go to “Home” > “Find & Select” > “Replace.”

Enter the misspelled domain in “Find what” and the correct domain in “Replace with.”

Click “Replace All.”

Step 6: Handling Outliers

Suppose the “Age” column contains outliers.

Identify Outliers: Calculate the upper and lower bounds using the Interquartile Range (IQR) method.

Calculate Q1 and Q3 using the formulas “=QUARTILE(B2:B100, 1)” and “=QUARTILE(B2:B100, 3)”.

Calculate IQR as Q3 — Q1.

Set lower bound as Q1–1.5 * IQR and upper bound as Q3 + 1.5 * IQR.

Remove Outliers: Create a new column “Age Outlier” next to the “Age” column.

In the first cell of the “Age Outlier” column, use the formula “=IF(OR(B2<LowerBound, B2>UpperBound), TRUE, FALSE)” (assuming “Age” data is in column B).

Filter the “Age Outlier” column to show “TRUE” values and delete corresponding rows.

Step 7: Data Validation

Let’s set a data validation rule for the “Age” column.

Data Validation Rule: Define a rule to only allow ages between 18 and 100.

Select the “Age” column.

Go to “Data” > “Data Validation.”

Choose “Whole Number,” set criteria to “between,” and input minimum and maximum values.

Master Excel From A to Z

Step 8: Data Transformation and Enrichment

Suppose we want to calculate the total purchases for each customer.

Calculations: Create a new column “Total Purchases.”

In the first cell of the “Total Purchases” column, use the formula “=SUM(E2:G2)” (assuming purchase data is in columns E, F, and G).

Drag the fill handle down to apply the formula to all rows.

Step 9: Final Review and Documentation

Data Quality Check: Review the entire dataset to ensure all data cleaning steps were successful.

Documentation: Create a new worksheet and document the data cleaning steps you performed, including formulas and functions used.

Step 10: Save and Export

Save Your Workbook: Save the cleaned dataset in a new Excel workbook.

Export Data: If needed, export the cleaned data to other formats such as CSV for further analysis.

Congratulations! You’ve successfully performed data cleaning using Excel, transforming raw and potentially messy data into a reliable foundation for insightful analysis. Remember that Excel offers a wide range of functions and features, making it a versatile tool for data cleaning tasks. For more complex or larger datasets, consider exploring specialized data cleaning software or programming tools. Happy data cleaning!

Master Excel From A to Z

--

--

Sanderson Labousse

Architect of transformation, converting data-driven revelations into strategies that shape industries and redefine paradigms. https://www.cyberopsanderson.com/