Quick answer

In RFC 4180 CSV, a field that starts with a double quote must end with a matching quote.

CSV Unclosed Quote

In RFC 4180 CSV, a field that starts with a double quote must end with a matching quote. If the closing quote is missing, the parser cannot know where the field ends.

Common causes

How to fix

Examples

Bad

name,note
Alice,"Hello world
Bob,"Bye"

Good

name,note
Alice,"Hello world"
Bob,"Bye"

FAQ

What does unclosed quoted field mean in CSV?
A field began with a double quote but no closing quote was found before the next comma or end of line.
Can a CSV field span multiple lines?
Yes, in RFC 4180 a quoted field can contain newlines; the field ends only when you see the closing quote.

Fix it now

Try in validator (prefill this example)

Related

All tools · Canonical