33 chars · 4 lines
Needs attention
33 chars · 4 lines
Needs attention
CSV empty-row troubleshooting
The sample contains a completely blank line between two two-column records. The validator reads that physical line as an empty record with one field, so it no longer matches the table width. Remove accidental blank records or encode an intentional empty row with the correct number of delimiters. This tool is free to use. No account or payment is required.
Last updated
Unlike prose documents, a blank line in delimited data is still a record boundary. Importers may treat it as an empty record, so decorative spacing between groups can produce row-width mismatches or unexpected blank records.
Compare the malformed source with a corrected version that the same VetaTool CSV mode accepts.
name,role
Ada,admin
Linus,editorname,role
Ada,admin
Linus,editorCommon questions
Some consumers tolerate them, but this validator treats a blank line as a record and requires it to match the established column count.
Use one delimiter so the row contains two empty fields, for example a single comma for comma-delimited CSV.
Remove lines that are only visual spacing; keep intentional records only when their field structure is explicit.
Debugging a specific CSV issue? Browse CSV troubleshooting.