This post was most recently updated on April 15th, 2022.
4 min read.This article will explain how you can change the Excel list delimiter for your CSV (or other) file exports.
Recently, I needed to find a way to import data from an old Excel-file to a custom-coded system that could import CSV files. However, the data was fairly non-sanitized – containing commas, semicolons and other weird characters. I could define the delimiter used in the imported data – however, that would be useless if I wasn’t also able to define it in the export.
With Excel, it’s not that simple, though. Excel, just like other Microsoft Office applications loves trying its best to respect the regional & localization settings of the machine it’s running on – most often to frustrating results.
However, like with so many other things, you can change the delimiter value used in CSV export by tweaking these settings. And this article describes how!
Another day, another workaround. If you’re not interested in the background stuff and WHY I ran into this issue, just click to jump right down to the actual solution:
How to export a CSV with custom delimiter using Microsoft Excel
Background
Table of Contents
If you’re still here, let’s delve into the background of the issue a bit deeper.
I needed to wrangle data stored in an .xlsx file into another form, that another application could read. This file format happened to be CSV.
What’s a “CSV” -file ?
Stands for “comma-separated values” – A text file that uses a comma to separate values.
Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator (Delimiter) is the source of the name for this file format.
Normally, that’s simple – just “save as” with a different file format. However, this time I was posed with an issue: the data included both commas (“,”) and semicolons (“;”), both of which are typical delimiters in CSV files. Additionally, I couldn’t wrap the values inside quotes due to limitations in both the export and the import functionality. So I needed to use another character – such as pipe (“|”).
Instead of being able to configure the delimiter in the export (like in any sensible spreadsheet editor, if you ask me!), Excel is just going to use your regional settings and grab the list separator from there. This means that in English, CSV is going to be values limited by commas, like this:
Value1,Value2,Value3,Value4...
But in Finnish, for example, we’ll be using the semicolon – like so:
Value1;Value2;Value3;Value4...
And I could imagine there are plenty of other locales where you might need to tell the values apart with semicolon instead of a comma – or you might need even need something totally diferent!
But simply changing my region to something else isn’t a solution this time, though – the data I had been supplied had both colons and semicolons in cell values. The data would be incorrectly split and parsed due to that.
However, luckily we can override the delimiter to be almost anything – and it’s all done through the regional settings!
Solution
I found a couple of examples on how to do it in Windows 7 – and obviously, that’ll help you eventually find your way in Windows 10 as well. But always useful to also document the exact steps – the guide below should be accurate for Windows 10 and 11, and be “close enough” for Windows 7. :)
Here are the steps in writing – see some useful screenshots further below!
Time needed: 10 minutes.
How to export a CSV with custom delimiter using Microsoft Excel?
- Make sure Microsoft Excel is closed before trying to change the CSV delimiter
This is required to make sure Excel picks up your changes.
- Open Control Panel
This can be done by hitting win+r and writing “Control Panel” in the Run-window.
- Next, you need to access Regional Settings
It’s available either under “Region” or “Clock and Region” -> “Region”. - Click the “Additional Settings” -button
This’ll pop up quite a few additional options!
- Find the “List separator” and change it to your preferred delimiter such as a pipe (“|”).
While the dropdown might have some prepopulated values, you can actually just safely ignore them and input whatever delimiter you need to use to the textfield directly.
Note, that there’s at least one, undocumented limitation here: you can’t use the same character as both decimal and list separator! This means that if you’re using regional settings like Finnish, where comma is considered to be decimal separator instead of a full stop or “dot”, you can’t use it as a list delimiter… Before you change the decimal separator to something else, that is :)
This also doesn’t come without some side effects: the same list separator is used, for example, as the separator for passing parameters to an Excel function, as Faz notes in the comments-section below. - Click OK -> OK -> exit Control Panel, after which you can proceed to actually exporting the file!
With the selection done, just hit “OK” a couple of times and head back to Excel! You should be able to save your file as CSV or use the Export-function – and you should be good this time!
- Open the Excel file
The file you want to export to a CSV with custom delimiter – in my example, to a “pipe delimited file”.
- Select File -> Save As
This should pop up the classic saving dialog – which in Excel comes with some useful options…
- Change the ‘Save as type’ to ‘CSV (Comma delimited)(*.csv)’
Admittedly, the name is misleading at that point, but we’ll just have to live with that.
- Change the name and file extension if need be
By default it stays as csv even if you’re using a different delimiter.
- Click Save -> OK -> Yes
And you should be good!
As an interesting side note, you can use completely nonsensical characters as delimiters! Take the picture below as an example – this was actually required for a work project once. A project, that’s probably still running in production…

References
Big kudos to Barry Stevens for his blog post on the topic and Sami Laiho (or, like he’s better known, “Järjestelmänvalvoja”) for noticing you can’t use the same character as both decimal and list separator 😬
- Using role claims to target WebSockets - May 24, 2022
- The simplest fixes to “500 (Internal Server Error)” from Azurite - May 17, 2022
- How to solve “Npgsql: 42883: function create_hypertable(…) does not exist”? - May 10, 2022