In Excel: open the file via Data ▸ From Text/CSV (not by double-clicking), check the detected delimiter and column types in the preview, then Load — or convert it to a real .xlsx with the tool above.
3 rows · 3 columns · Clean numbers become numeric cells; IDs like 007 stay text.
What this does
A .csv is plain text, not an Excel file — Excel merely knows how to display it. Double-clicking lets Excel guess the delimiter and data types, which is where mangled umlauts, stripped leading zeros, and dates like 1/2 turning into February 1st come from. Importing through Data ▸ From Text/CSV (Power Query) shows a preview where you control the delimiter, encoding, and per-column types before anything is loaded. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “change csv format to excel”. Start on a copy or a tiny sample, keep the affected cells visible, and compare the result with the tool above before you touch the real workbook. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. The point is a data step that keeps your analysis trustworthy, but the practical win is that someone else can open the file and understand what happened without asking you.
A worked example
A bank export orders.csv uses semicolons and contains the customer number 007. Double-clicked, Excel shows 7 in one column on some systems and everything-in-column-A on others. Imported via From Text/CSV with delimiter Semicolon and the customer column set to Text, it loads as 007 in its own column — then File ▸ Save As .xlsx makes it a real workbook. Almost every system exports CSV, and almost every recipient wants a clean spreadsheet. Controlling the import (or converting directly) prevents the classic silent data corruption: lost zeros, wrong dates, broken characters. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. The short version of “change csv format to excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- Double-clicking the CSV and letting Excel guess the delimiter and types.
- Losing leading zeros because numeric-looking IDs were auto-typed as numbers.
- Broken ä/ö/ü because the file is UTF-8 but was read as ANSI — set File Origin to 65001: Unicode (UTF-8).
- Saving the imported data back as .csv and wondering where the formatting went — save as .xlsx.
Frequently asked questions
Is a CSV file an Excel file?
No. CSV is plain text with delimiter-separated values. Excel can open and display it, but features like formulas, formatting, and multiple sheets need .xlsx.
Why does my CSV open with everything in column A?
The file's delimiter does not match your system list separator (comma vs. semicolon). Import via Data ▸ From Text/CSV and set the delimiter explicitly.
Is the converter on this page safe for confidential data?
Yes — it builds the .xlsx entirely in your browser. Nothing is uploaded.