How to Save a CSV File to Excel

There are two ways to “save a csv file to excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above with a tool to test it; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

Exact answer

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.

ƒxCSV to Excel ConverterLive
Ready to convert
3 × 3

3 rows · 3 columns · Clean numbers become numeric cells; IDs like 007 stay text.

Runs entirely in your browser — your data never leaves this page.
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

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. For “save a csv file to excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. 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. That is what makes a data step that keeps your analysis trustworthy useful in real work: repeatable, auditable, and not dependent on memory or luck.

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. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Here is the takeaway for “save a csv file to excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

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.

Other ways people ask this

People reach this page typing “how do i save a csv file in excel”, “how to save a csv file in excel” and “save excel file to csv”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “how do i save a csv file in excel”, “how to save a csv file in excel”, “save excel file to csv” all point at the one operation explained on this page, which is why they all lead here.