In Excel: use File ▸ Save As (or Save a Copy), pick "CSV UTF-8 (Comma delimited) (*.csv)" as the file type, and save — only the ACTIVE worksheet is exported, and formulas are replaced by their current values.
Choose a .xlsx file — the first worksheet is converted.
What this does
CSV is plain text: one row per line, cells separated by a delimiter. Saving as CSV therefore throws away everything that is not a value — formatting, formulas, charts, extra sheets, and data types. That is usually the point (maximum compatibility), but it means the conversion is one-way: keep the original .xlsx if you still need the workbook features. 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 excel as csv file”, 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 workbook has the active sheet Orders with 200 rows and a Pivot sheet. Saving as CSV UTF-8 produces orders.csv with exactly the 200 rows of Orders as text — the pivot sheet, the currency formatting, and the =SUM() row all disappear; the SUM cell contains its last calculated number instead. CSV is the lingua franca of data import — CRMs, banks, databases, and scripts all accept it. Exporting cleanly (UTF-8, right delimiter) avoids broken umlauts and shifted columns on the receiving side. 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
If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. 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. If you take one thing from this page on “save excel as csv file”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.
Common mistakes
- Picking the legacy "CSV (Comma delimited)" instead of CSV UTF-8, which mangles ä, é, and other non-ASCII characters.
- Expecting all sheets in the file — CSV holds exactly one.
- Re-opening the CSV and being surprised formulas are gone; they were exported as values.
- Leading zeros (007) lost when the CSV is re-opened in Excel — import the column as text instead.
Frequently asked questions
Why does my exported CSV show semicolons instead of commas?
Excel uses your system list separator. On many European locales that is ";". The converter above lets you pick comma, semicolon, or tab explicitly.
How do I export every sheet of the workbook?
Save each sheet separately (CSV is single-sheet), or use a script/Power Query to batch-export.
Why do my dates look like numbers (e.g. 45443) in the CSV?
Date cells store serial numbers; some exports emit the raw serial. Use our date serial converter, or format the column as text dates before exporting.
Other ways people ask this
This is also commonly searched as “how do i save an excel file as a csv”, “how to save as a csv file in excel”, “how to save a excel file as a csv” and “how to save an excel file as a csv”. They describe the identical operation, so you are in the right place no matter how you phrased it.
Why do people search for this in so many different ways?
Because the same task has many names. “how do i save an excel file as a csv”, “how to save as a csv file in excel”, “how to save a excel file as a csv” all point at the one operation explained on this page, which is why they all lead here.