CSVClinic
● 100% local · nothing uploaded

CSV SAFETY GUIDE

Prevent CSV formula injection.

Spreadsheet applications can interpret cells beginning with “=”, “+”, “-”, or “@” as formulas instead of text. CSV Clinic flags those cells and prefixes them so the exported spreadsheet treats the value as text.

Open CSV Clinic

Why a plain CSV can execute formulas

CSV has no data types. When Excel or another spreadsheet opens it, the application decides whether each value is text, a number, a date, or a formula. User-controlled values that start with formula markers can therefore be evaluated when a person opens an export.

Safer handling steps

  1. Treat exports containing untrusted text as data, not trusted spreadsheets.
  2. Scan every field after parsing, including quoted fields.
  3. Flag values whose trimmed form starts with a formula marker.
  4. Prefix flagged values with an apostrophe before spreadsheet use.
  5. Review the repaired output because some legitimate formulas may intentionally begin with those characters.

What the free tool changes

The repair prefixes formula-like cells with an apostrophe and records the count in a downloadable JSON report. Processing stays in the browser. The tool reduces a common risk but is not a substitute for application-specific export validation or endpoint security.

Open CSV Clinic