Excel – Getting Excel to handle CRLF’s correctly in CSV

csvmicrosoft excel

I am creating CSV files to be opened in Excel. The rows are separated by CRLF and that's fine, but some of the input data contains CRLF data in it as well. Per the usual standards, I surround them with quotes, but Excel doesn't seem to recognize the CR character and puts a little box with a question mark in it instead. I can strip the CR's out of the CSV file, but it seems like an unnecessary step. Is there an easy way to get Excel to recognize a CRLF inside a row of a CSV file?

Best Answer

It looks like just using vbLf is the answer. You are going to need to strip the carriage returns.

Take a look over at this StackOverflow question.

Related Question