44 chars · 3 lines
Needs attention
44 chars · 3 lines
Needs attention
CSV row-width troubleshooting
The preloaded CSV has three columns in the header and first data row, but the final row contains only two fields. VetaTool compares every record with the first row and reports the first width mismatch instead of silently padding or dropping data. This tool is free to use. No account or payment is required.
Last updated
A missing comma, an extra delimiter, or a line break that was not quoted can change the field count for one record. Fix the source row rather than padding every record blindly, because the missing value may belong to a specific column.
Compare the malformed source with a corrected version that the same VetaTool CSV mode accepts.
name,role,active
Ada,admin,true
Linus,editorname,role,active
Ada,admin,true
Linus,editor,falseCommon questions
For predictable imports, VetaTool requires each record to match the width of the first row.
Common causes include a missing delimiter, an extra delimiter, or a newline that split one logical record into two rows.
No. It reports the mismatch so you can decide which field is actually missing or extra.
Debugging a specific CSV issue? Browse CSV troubleshooting.