Does this CSV formatter upload my data?
No. CSV parsing and formatting happen in your browser.
Can it handle quoted CSV fields?
Yes. The parser supports quoted values with delimiters, quotes, and line breaks.
Can I convert TSV to CSV?
Yes. Choose Tab as the input delimiter and Comma as the output delimiter.
Does it change my data?
It normalizes whitespace and quoting based on your options. Review the output before using it in production imports.
Why does my CSV open as one column?
The file probably uses a delimiter your spreadsheet app is not detecting, such as semicolon, tab, or pipe. Select the correct input delimiter and output comma-separated CSV if the target expects commas.
Can CSV contain line breaks inside cells?
Yes, but those values must be quoted. Some simple import scripts still struggle with multiline fields, so test the destination system before relying on them.