There is a .csv file we would like to distribute to our customers, it contains multiline entries (i.e. entries with newlines). Depending on the language settings of the customers, the file may or may not be correctly imported into Excel. Normally, we would suggest to use to Import the file, but there seems to be some bug with the multiline entries, so they will 'break apart' into separate lines (curiously, this does not happen when the file is opened directly).
With some languages (e.g. English), a csv with commas is opened correctly, but not a file with semicolons. With other languages (e.g. German), a csv with semicolons can be opened directly, but not a file with commas.
The import doesn't help with the multiline entries.
Sample csv file (2 csv lines):
A; B; "some
stuff"; C;
1; 2; "another line"; 3;
Correct import (2 lines with a multiline entry):
A B (some
stuff) C
1 2 (another line) 3
Wrong import (3 lines):
A; B; C; "some
stuff";D;
1; 2; "another line"; 3;
There is another possibility to intervene - to select a column and press Text to Columns under Data. This splits the lines neatly based on a separator, but still doesn't get around the newlines.
Is it possible to import a csv file, so that multiline entries are always recognized?