Skip to main content

Lesson 2.5 – Basic Data Cleaning

Lesson 2.5 – Basic Data Cleaning

Clean data is essential for accurate calculations, sorting, filtering, and analysis. Even small issues—extra spaces, inconsistent capitalization, or unwanted characters— can cause formulas to fail or produce incorrect results. In this lesson, you will learn simple but powerful tools to clean data quickly using Excel functions.


1. Why Data Cleaning Matters

Raw data often contains problems such as:

  • Extra spaces before or after text
  • Inconsistent capitalization
  • Non-printable characters from imported files
  • Mixed formats (text that looks like numbers)

Cleaning data ensures consistency and prevents errors in formulas and analysis.


2. TRIM – Remove Extra Spaces

TRIM(text) removes extra spaces from text, leaving only single spaces between words.

Example:

  • Original: “ Product A ”
  • Formula: =TRIM(A1)
  • Result: “Product A”

TRIM is essential when working with imported or manually typed data.


3. CLEAN – Remove Non‑Printable Characters

CLEAN(text) removes hidden characters that often appear in data imported from PDFs, websites, or external systems.

Example:

  • Original: “Product A□” (invisible character)
  • Formula: =CLEAN(A1)
  • Result: “Product A”

CLEAN is especially useful when data looks normal but behaves incorrectly.


4. PROPER – Capitalize Text Correctly

PROPER(text) converts text to “Title Case,” capitalizing the first letter of each word.

Example:

  • Original: “john SMITH”
  • Formula: =PROPER(A1)
  • Result: “John Smith”

Use PROPER for names, titles, and labels.


5. Combining Cleaning Functions

You can combine TRIM, CLEAN, and PROPER to fix multiple issues at once.

Example:

=PROPER(TRIM(CLEAN(A1)))

This formula:

  • removes non‑printable characters
  • removes extra spaces
  • applies proper capitalization

6. Converting Text Numbers to Real Numbers

Sometimes numbers are stored as text and cannot be used in formulas.

Fix:

  • Use Value: =VALUE(A1)
  • Or multiply by 1: =A1*1
  • Or add zero: =A1+0

Excel then converts the text into a real numeric value.


7. Practical Exercise

Practice data cleaning with the following steps:

  1. Create a worksheet named Lesson_2_5_Practice.
  2. In column A, enter five messy text values (extra spaces, mixed case, symbols).
  3. Use TRIM to remove extra spaces.
  4. Use CLEAN to remove non‑printable characters.
  5. Use PROPER to fix capitalization.
  6. Combine all three functions in a single formula.
  7. Convert text numbers into real numbers using VALUE.

Next Lesson

Module 3 – Essential Formulas and Functions

Comments

Popular posts from this blog

Alfred Marshall – The Father of Modern Microeconomics

  Welcome back to the blog! Today we explore the life and legacy of Alfred Marshall (1842–1924) , the British economist who laid the foundations of modern microeconomics . His landmark book, Principles of Economics (1890), introduced core concepts like supply and demand , elasticity , and market equilibrium — ideas that continue to shape how we understand economics today. Who Was Alfred Marshall? Alfred Marshall was a professor at the University of Cambridge and a key figure in the development of neoclassical economics . He believed economics should be rigorous, mathematical, and practical , focusing on real-world issues like prices, wages, and consumer behavior. Marshall also emphasized that economics is ultimately about improving human well-being. Key Contributions 1. Supply and Demand Analysis Marshall was the first to clearly present supply and demand as intersecting curves on a graph. He showed how prices are determined by both what consumers are willing to pay (dem...

Fundamental Analysis Case Study NVIDIA

  Executive summary NVIDIA is analyzed here using the full fundamental framework: balance sheet, income statement, cash flow statement, valuation multiples, sector comparison, sensitivity scenarios, and investment checklist. The company shows exceptional profitability, strong cash generation, conservative liquidity and net cash, and premium valuation multiples justified only if high growth and margin profiles persist. Key investment considerations are growth sustainability in data center and AI, margin durability, geopolitical and supply risks, and valuation sensitivity to execution. The detailed numerical work below uses the exact metrics you provided. Company profile and market context Business model and market position Company NVIDIA Corporation, leader in GPUs, AI accelerators, and related software platforms. Core revenue streams : data center GPUs and systems, gaming GPUs, professional visualization, automotive, software and services. Strategic advantage : GPU architecture, C...

Behavioral Portfolio Theory (BPT) – Rethinking Investor Behavior and Portfolio Construction

  Traditional finance theories like Modern Portfolio Theory (MPT) assume that investors are perfectly rational and risk-averse, aiming to maximize utility by optimizing expected returns and variance. However, decades of research in behavioral finance have shown that investors often deviate from purely rational behavior. Behavioral Portfolio Theory (BPT) , introduced by Shefrin and Statman in 2000, offers a fresh perspective by integrating psychological and emotional factors into portfolio construction. What is Behavioral Portfolio Theory? Behavioral Portfolio Theory suggests that investors mentally segment their wealth into multiple “mental accounts” or layers, each with distinct goals, risk preferences, and expectations. Unlike MPT's single-layer approach focusing on an overall risk-return tradeoff, BPT models the portfolio as a layered pyramid , where each layer reflects different investor aspirations. For example: The bottom layer prioritizes capital preservation and safe...