← Back to guides

Excel CSV import pitfalls and fixes

Excel creates CSV outputs that look simple but often include hidden behaviors. This guide covers the issues that break downstream systems and how to correct them in a repeatable way.

Pitfall: regional separator mismatch

In some regional setups Excel uses semicolon as default list separator. In those files, commas and decimals can appear inconsistent and break import logic.

Pitfall: hidden formatting in text columns

Excel can store leading zeros and special text forms. Exporting may remove what appears to be numeric shape while still preserving display formatting.

Pitfall: date serials and locale date shapes

Spreadsheet date values may appear as serial numbers or locale-based strings. Both can become invalid if your parser expects one format.

Pitfall: newline and quote breakage

Cells containing line breaks or comma-like punctuation can become unreadable without proper quoting. This is a top cause of row shifts.

A stable import playbook

  1. Profile source with a tiny sample.
  2. Fix separator and quoting behavior.
  3. Normalize text, dates, and numeric formats.
  4. Run null and schema checks before sharing with downstream systems.