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
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, activeCorrect pattern
status: active, while source values remain archivedA safe repair workflow
- 1Profile unique values by column.
- 2Choose a rule only for fields with a known semantic meaning.
- 3Convert a copy and preserve source values when reversibility matters.
- 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
How to Clean CSV Data Without Hiding the Original ProblemsLearn practical techniques to clean messy CSV files. Remove duplicates, fix formatting, and standardize data without Excel crashes or complex scripts.Find Fuzzy Duplicates in CSV FilesFind near-duplicate rows using similarity matching. Catch typos like 'Jon Smith' vs 'John Smith'. Free online tool.