Skip to main content

Data-cleaning symptom

Standardize Inconsistent Capitalization in a CSV

Normalize CSV capitalization by column without damaging email addresses, identifiers, acronyms or human names.

Use the matching tool

Case Converter

Open Case Converter

What the error actually means

Values such as ACTIVE, Active and active often represent one category but are counted separately. Case conversion is useful for controlled fields; it is risky when applied indiscriminately to names, identifiers and free text.

Likely causes

  • Several systems use different display conventions.
  • Users entered categories as free text.
  • A case-sensitive join treated equivalent values as different.
  • An earlier uppercase transformation removed meaningful presentation.

Column-specific conversion

Problem

status: ACTIVE, Active, active

Correct pattern

status: active, while source values remain archived

A safe repair workflow

  1. 1Profile unique values by column.
  2. 2Choose a rule only for fields with a known semantic meaning.
  3. 3Convert a copy and preserve source values when reversibility matters.
  4. 4Re-run duplicate and category counts after normalization.

How to verify the result

A file that downloads successfully is not automatically a correct file. Check the result at both the structural and business-data levels:

  • Controlled categories collapse as expected.
  • IDs and case-sensitive tokens are unchanged.
  • Names and acronyms have been reviewed separately.
  • Joins improve without creating false matches.

Read the deeper guides