← All Kits · Excel Kit · Article 0: the build order
The Names Came In as Gibberish and Excel Said Nothing
This article gives you the fix for a specific ugly sight: names importing as é, ü and rows of symbols where letters should be. The fix at import is one dropdown: Data > From Text/CSV, set File Origin to 65001: Unicode (UTF-8). The rest of the page is what happened, how to spot it, and why it is worse than it looks.
It is worse than it looks because it is not a font problem. Those names are now wrong in the data. Search for the real title and you will not find it. Join on the name and the join fails. It is data loss that dresses up as a display glitch, which is why it ships.
This is the third door of the family from article 4 and article 6: Excel deciding what your data is and never mentioning it. In the build behind this series it was found late, in a finished dashboard: two of the top fifteen games displayed as garbage, and a count against the file put the damage at 4,685 of 82,956 names. Nothing had errored at any point.
- What happened, in plain terms
- How to spot it: the three-character signature
- Why it is data loss, not a display glitch
- The fix at import
- The fix after the fact
- Why it hits names hardest
- Run it on your own file
- A cheat sheet
What happened, in plain terms
A text file on disk is just numbered codes, one per character. An alphabet, an encoding in the trade's word, is the codebook that says which number means which letter. The file does not carry its codebook visibly. The program opening the file has to know, or guess.
The build's CSV was written in UTF-8, today's standard, which covers every language by spending two or more codes on any letter beyond plain English. Excel's legacy open path guessed the old Western European codebook instead, which reads one code per character, always. So every two-code letter was read as two separate wrong characters. An é, stored as two codes, came out as é.
Predict what that does to a Romanian game title with four accented letters. Four two-code letters, eight wrong characters, and the title reads as gibberish. That is exactly the "Aventura Copilului Albastru" row that flagged the problem in the build's top fifteen.
How to spot it: the three-character signature
The corruption has a fingerprint, because the wrong codebook maps UTF-8's lead codes to a small set of characters. Three sequences do most of the appearing:
| You see | It was probably |
|---|---|
à followed by a symbol: é, ü, ñ, À | An accented Latin letter: é, ü, ñ, À |
 before punctuation or spaces | A non-breaking space or symbol |
†plus one more: ’, “, â€" | Curly quotes and dashes from any word processor |
Strings of È, Ä, Å pairs | Eastern European, Turkish, Nordic letters |
Every mapping in that table was re-run through the actual conversion before publishing: é read under the wrong codebook really does come out é. Say the search you would run to sweep a file for this. Ctrl+F for à is the whole audit, and it takes ten seconds.
Why it is data loss, not a display glitch
A font problem would mean the stored value is right and the pixels are wrong. This is the reverse: the pixels faithfully show a stored value that is now wrong. Consequences, in the order they usually bite:
Search fails. The user searches the real title. The cell holds the mangled one. No match, and no hint why.
Joins fail. A lookup against a clean source list matches on the name. 4,685 rows no longer match anything, and per article 2's theme, a failed match does not error. The rows just drop or blank.
Grouping splits. The same publisher spelled cleanly in one file and mangled in another becomes two publishers, which is the entity-resolution problem manufactured out of nothing.
The one mercy: the corruption is mechanical, so it is reversible if you still have the original file, and often even from the mangled text, because the wrong reading was consistent. Which leads to the two fixes.
The fix at import
- Data > From Text/CSV, the same door as article 4, and never a double-click.
- In the preview, top-left: File Origin. Set it to 65001: Unicode (UTF-8).
- Look at a row you know has accents before loading. The preview is the test: names read as names, done.
One import, two dropdowns, both traps from this family closed: File Origin for the alphabet, column type Text for the identifiers. That pairing is the whole defensive import, and it costs under a minute.
The fix after the fact
The build's dashboard was already assembled when the damage surfaced, so re-importing everything was the expensive path. What it did instead, and what works in general:
- Go back to the raw CSV, which existed because raw files never get overwritten. Re-read just the damaged column under the right encoding.
- Export that clean column with a byte order mark, a short invisible marker at the front of a file that tells Excel which alphabet follows, so the paste-source opens correctly on any machine.
- Paste it over the mangled column, refresh the pivots. Names heal, joins come back, and the checks confirm the row count never moved.
If the raw file is gone, recovery is still often possible by reversing the wrong reading, but that is a rescue job, not a workflow. The workflow is the dropdown at import.
Why it hits names hardest
Notice which columns this family of failure lands on. Numbers survive encoding trouble, because digits sit in the plain-English range every codebook agrees on. The damage concentrates in names: people, places, products, titles. The columns you join on, search by, and put in front of readers.
6% of a column sounds survivable until it is 6% of your customer names in a join key. And the affected rows are not random: they are systematically the non-English ones, so any analysis touching international data quietly loses exactly that slice. A dashboard built on it would undercount a specific population and look completely fine, which by now you will recognize as this series' recurring villain: the error that returns confident numbers.
Run it on your own file
- Ctrl+F for
Ãin any imported dataset with names in it. Ten seconds. - Hits: find the raw file and re-import it properly. File Origin 65001, column types set, per this page and article 4.
- No raw file: assess before rescuing. How many rows, which analyses touch the column, whether the join keys are affected.
- Add the canary check. Keep one known-accented value in a check cell:
=COUNTIF(Games[Name],"*é*")or simply eyeball a pinned row you know has accents. If the canary reads clean, the column probably does. - Fix the pipeline, not just the file. If an export lands on your desk weekly, the File Origin setting is part of the import routine now, or this article reruns weekly too.
The Excel Kit drills the import-to-pivot workflow with worked examples and a mock exam. The ten-second Ctrl+F audit is yours from this page.
Open the Excel Kit →A cheat sheet
| Situation | Do | Watch for |
|---|---|---|
| Any CSV with names in it | Data > From Text/CSV, File Origin 65001 | Check an accented row in the preview before loading |
| Sweeping a file for damage | Ctrl+F for Ã, then †| Hits mean the stored values are wrong, not the font |
| Damage found, raw file exists | Re-import the column correctly, paste over, refresh | Export the clean column with a byte order mark |
| Damage found, no raw file | Reverse the misreading, as a rescue | Verify against any external source you can find |
| Joins mysteriously dropping rows | Check the join key for the signature | The dropped rows are systematically the non-English ones |
| Recurring exports | Put File Origin in the routine | A fixed file with a broken pipeline is a one-week fix |
Every article comes out of one step of the same real build, in build order. Links go live as each one publishes.
- Build a dashboard in this order: correct, then clear, then compelling
- Label your rows before you chart them
- Check your work before anyone else does
- Name your data so your formulas stop breaking
- The dialog that quietly deletes your zip codes
- A pivot table is a question, not a report
- Excel just summed your ID numbers and said nothing
- Percentages are the whole story and Excel hides them
- Show the unit without breaking the number
- Pick the chart your number already decided
- Chart design basics: take things away, then point
- One row at a time, or all rows at once
- Four numbers across the top do more than four charts
- Sort your bar chart or it means nothing
- The finding that was just your own definition
- The names came in as gibberish and Excel said nothing (this article)
- Make one control drive every chart on the page
- Write the sentence your dashboard is arguing
Run the ten-second audit right now on the biggest imported file you have open this week. What did Ctrl+F Ã come back with?