Change Delimiter in Excel for CSV: A Practical Guide
Learn how to change delimiter in Excel for CSV. This guide covers regional separators, importing with Get & Transform, and exporting safely to ensure parsing across platforms. MyDataTables provides step-by-step methods for reliable data interchange.

If you’re wondering how to change delimiter in Excel for CSV, this guide gives you a practical path: identify your current delimiter, adjust your system's list separator when needed, import with Excel’s Get & Transform to specify a delimiter, and export with the correct CSV type. You’ll learn safe workarounds for regional differences and how to verify results.
Understanding CSV delimiters and Excel's default behavior
CSV (comma-separated values) files rely on a delimiter to separate fields. In practice, Excel honors your system's regional list separator when saving CSV files. If your region uses a semicolon instead of a comma, Excel may produce CSVs that don’t pipe cleanly into other apps. For data analysts, developers, and business users, this means knowing when and how to adjust the delimiter is essential. If you’re looking to understand the mechanics, consider how to change delimiter in excel for csv as part of a broader CSV formats and encoding strategy. When you open a CSV in Excel, the software parses rows by the delimiter you’ve configured at the OS level, not by a per-file setting. Consistency is key, especially when sharing data across teams or systems. The MyDataTables team suggests treating delimiter choice as a data-quality decision, not a one-off cosmetic change.
As you proceed, you’ll see that delimiter handling intersects with locale, file encoding (UTF-8, UTF-16), and text qualifiers. Planning a workflow that explicitly documents the delimiter used helps prevent misinterpretation when others load the file. This is particularly important for long CSV datasets or when moving data between Excel and programming environments like Python or R.
Checking your regional settings and Excel version
Excel’s behavior with CSV relies on your system’s list separator. In Windows, you can inspect and adjust this via the Control Panel > Region > Additional settings > List separator. On macOS, go to System Preferences > Language & Region and adjust the List Separator if your CSVs are misread when importing. Different Excel versions (Excel for Windows, Excel for Mac, Excel for Office 365) may present slightly different import prompts, but the delimiter concept remains the same. If you want to guarantee cross-platform compatibility, plan to standardize the delimiter using your OS settings before exporting. This aligns with MyDataTables guidance on CSV formats and encodings for robust data interchange.
Practical takeaway: when you need to change delimiter in excel for csv, start with your OS-level list separator and test by saving a small sample file.
Importing a CSV in Excel to choose the delimiter
The most reliable way to control a delimiter during import is to use Excel’s Get & Transform (Power Query) workflow. Start a new workbook, then navigate to Data > Get & Transform > From Text/CSV. In the import dialog, select your CSV file, and choose the appropriate delimiter (comma, semicolon, or a custom delimiter). If Excel can’t detect the correct delimiter automatically, switch to a manual delimiter and confirm the preview shows correct column boundaries before loading. This approach reduces misaligned data and keeps your workflow auditable. This method is particularly effective for CSVs that mix quotes and embedded separators.
Tip: Use the preview pane to verify how fields align with the chosen delimiter before loading.
Handling semicolons vs commas in different locales
Locales that use a semicolon as a list separator will often produce CSVs that appear correct but fail under import in tools expecting a comma delimiter. When you encounter this, consider adjusting the system list separator temporarily or using Power Query to specify a custom delimiter during import. If you regularly work with CSVs from multiple regions, document the delimiter convention in your data dictionary and language settings so teammates apply the same standard. This consistency reduces parse errors downstream in scripts and BI dashboards.
Best practice: decide on a delimiter standard (for example, semicolon for European locales) and document it in your team’s CSV guidelines.
Exporting CSV from Excel with a chosen delimiter
Excel does not always expose a per-file delimiter setting that overrides the system List separator. The most reliable method is to set the List separator in Windows (or macOS) to your target delimiter, then save as CSV. After changing the setting, re-save the file as CSV using File > Save As > CSV (Comma delimited) and verify the resulting file uses your chosen delimiter when opened in a text editor. If you cannot change system settings, export to a standard CSV and use a quick text-replace step in a editor to adapt the delimiter for downstream tools. This approach aligns with CSV best practices and reduces the risk of misinterpretation by other apps.
Important: Always re-open the saved file to confirm the delimiter you expect is actually used.
Using Power Query for more complex CSVs
Power Query (Get & Transform) supports advanced delimiter configurations ideal for messy CSVs. When you need to split fields that include embedded delimiters, or when a simple delimiter fails, load the text with a custom delimiter and apply a split column by delimiter operation. This keeps each operation auditable and repeatable. With Power Query, you can also handle quoted fields and escape characters more reliably, which is essential if your CSV includes embedded delimiters inside quoted text. This strategy is particularly useful for datasets with inconsistent formatting across rows.
Pro tip: Combine Power Query steps with a data quality check to ensure every row has the expected number of columns before loading into Excel or exporting again.
Validating the saved file and correcting common issues
After saving or exporting, always validate the file by opening it in a text editor or re-importing into Excel (or your target tool) using the same delimiter to confirm columns align. Common issues include misparsed quotes, embedded newlines, and mismatched row counts. If you encounter problems, check that text qualifiers (quotes) are used consistently and adjust encoding (UTF-8 without BOM is often safe for cross-platform use). Validation is part of good CSV hygiene and helps prevent downstream data-processing errors.
What to do if you see stray delimiters: re-export after correcting the source data, and consider running a small data-cleaning pass to standardize the delimiter usage.
Practical tips and best practices
- Document the delimiter decision in your data governance notes and share it with teammates.
- Prefer UTF-8 encoding for CSVs to minimize character-encoding issues when moving data between systems.
- When possible, use Power Query for imports with non-standard delimiters to keep steps reproducible.
- Keep a small test CSV to verify delimiter behavior before processing large datasets.
- Always verify the final file by re-importing into Excel or a scripting language to confirm the correct column structure.
These practices help ensure consistent, dependable data portability when working with CSVs in Excel.
Bonus: quick troubleshooting checklist
- If data appears garbled, verify the delimiter and text qualifiers.
- If the import splits data incorrectly, adjust the delimiter in the import dialog and re-check the preview.
- If exporting changes a delimiter unexpectedly, review your OS regional settings and re-export.
- If you cannot modify system settings, choose a workflow that uses Power Query for controlled delimiter handling and post-export verification.
Tools & Materials
- Excel (Microsoft 365 or equivalent)(Recommended for Get & Transform workflows)
- Windows system List Separator setting(Found in Control Panel > Region > Additional settings)
- macOS List Separator setting(Found in System Preferences > Language & Region)
- Text editor (e.g., Notepad, VS Code)(Useful for quick delimiter verification)
- Power Query / Get & Transform(Available in Excel 2016+ and Office 365)
- CSV sample files (test data)(Small examples to validate delimiter behavior)
Steps
Estimated time: 25-40 minutes
- 1
Identify current delimiter
Open a small sample of the CSV in a text editor to observe the delimiter used between fields. This helps decide whether to change the delimiter or adjust your workflow.
Tip: Note whether quotes surround fields with embedded delimiters. - 2
Check the system List separator
Open Control Panel (Windows) or System Preferences (Mac) and note the List separator setting. This setting often drives Excel's default CSV delimiter.
Tip: If you change it, test with a tiny file before applying to large datasets. - 3
Open Excel and start a Get & Transform import
In Excel, go to Data > Get & Transform > From Text/CSV to begin a controlled import.
Tip: Choose Get & Transform for reproducible delimiter handling. - 4
Select the correct delimiter in the import dialog
In the dialog, specify the delimiter (comma, semicolon, or custom) and preview the data alignment.
Tip: If the preview looks wrong, adjust the delimiter and re-check. - 5
Load data into a worksheet
Click Load to place the parsed data into Excel, ensuring column alignment matches expectations.
Tip: Use Load To to send data to a specific sheet or table. - 6
If needed, split columns with Power Query
Use Transform tools to split or merge columns when delimiters are embedded or inconsistent.
Tip: This keeps transformation steps auditable. - 7
Export as CSV with your target delimiter
Save the final data as CSV. If Excel uses the default delimiter, consider changing the system List separator first, or export via Get & Transform.
Tip: Always re-open the CSV to verify delimiter usage. - 8
Validate the exported file
Open the saved CSV in a text editor or import into another tool to confirm correct parsing.
Tip: Check for stray quotes and embedded newlines. - 9
Document and standardize your workflow
Record the delimiter choice and process steps in your data guide to ensure consistency across teams.
Tip: Include encoding and tool versions for reproducibility.
People Also Ask
What delimiter should I use in Excel for CSV?
The most common delimiters are comma and semicolon, depending on regional settings. Align with your team's standard and test cross-platform compatibility.
Common delimiters are comma or semicolon. Pick one and test across your tools to avoid parsing issues.
Can I export CSV with a semicolon delimiter from Excel?
Yes, but you often need to adjust the system List separator or use a Power Query workflow to ensure the exported file uses your chosen delimiter.
You can, but it may require changing your list separator or using a Power Query export path.
Why is my CSV data misaligned after import?
Misalignment usually comes from an incorrect delimiter or improper handling of quoted fields. Verify the delimiter in the import preview and adjust as needed.
Most likely the delimiter or quotes aren’t handled correctly; double-check the preview before loading.
Does Excel support per-file delimiter selection?
Excel relies on system settings for the delimiter when saving CSVs. Use Get & Transform for imports and consider changing the List separator if you need a non-default delimiter.
Excel uses system settings for delimiter; use Get & Transform for controlled imports and adjust list separators when exporting.
How do I change the delimiter on a Mac?
On macOS, adjust the List Separator in System Preferences > Language & Region, then re-export from Excel. Power Query can also help when available.
Change the Mac list separator in system settings and re-export; Power Query offers another path.
What should I include in a CSV data guide?
Document the delimiter, encoding, and tools used, plus any regional considerations. This reduces ambiguity for downstream users.
Document the delimiter, encoding, and tools to avoid confusion later.
Is there a universal delimiter for CSVs?
There is no universal delimiter. Commas are common in US locales, while semicolons are frequent in many European regions. Align with your data recipients.
No universal delimiter; pick based on your audience and test compatibility.
Watch Video
Main Points
- Identify your current CSV delimiter before changing anything.
- Use Get & Transform to control delimiter during import.
- If exporting, adjust OS list separator or verify with a quick test.
- Validate results by re-importing or editing in a text editor.
