I have a .csv with rows that are something like:
"Review",Clean Review
"The hotel _was, re3ally good",the hotel was really good
but when I was open with excel 2013 the cells with the double quotes are showing empty on the sheet, and I can only see the text in the formula bar. Can anyone tell me why this is happening?
excel sheet kinda looks like:
| |Clean Review|
| |the hotel wa|
I have opened the .csv in notepad and there doesn't seem to be hidden characters causing this behavior
I used Python's csv module to create the .csv
it especially happens if you drag and expand the first column
The problem is in your CSV file. There is a CR after the
w
inReview
. AndReview
is actually on the 2nd line of A1 (seen if you increase the height of row 1).Here is an analysis of the characters at the beginning of your actual CSV with the character and the ASCII code. Note the
10
after thew
Try
This forces the value to be text and not something else. Haven't tried but theoretically should work.
Please check this and more solutions here