I have a Web site (PHP) that generates a CSV file (text/csv) with the following content:

ID;E-Mail_User;Name;Applikation;Rolle;Auftragsdatum;Administrator
522;user@domain;WXDUILAS;ABCD;XYZ;2009-03-04 05:00:09;user@domain

When I select OpenOffice to show the CSV file only an empty spread sheet is shown. No error is displayed. When I try to open the file with oocalc test.csv the same happens. I have tried different versions of OpenOffice.

What is wrong with the file? How can I get an error message out of OpenOffice?

Update: It does not have anything to do with the use of semicolons. I have reduced the file to 4 charaters. A file with the contents ID;A opens the CSV import dialog. But a ID;E opens an empty sheet. Why?

Update 2: The pattern id;E also works. ID;E must be some kind of magic code. Does anybody know the meaning?

link|improve this question

62% accept rate
1  
It DOES have to do with the semicolons - a file containing only ID,E causes the import dialog to open. As Matt said, CSV is comma-separated, whether you like it or no. – nbt May 17 '11 at 14:45
The question is why ID;A works and ID;E does not. – ceving May 17 '11 at 14:54
Bug in ooffice? Whatever, the answer is to generate proper CSV. – nbt May 17 '11 at 14:58
feedback

2 Answers

up vote 1 down vote accepted

ID; in the first 3 characters of a file is the signature for a SYLK file. The fourth character can be a P, N or an E which flags certain information about how the rest of the file should be processed... so your "CSV" file is almost certainly being parsed as a SYLK file when that initial signature is read, and the remainder of the file is not valid SYLK format.

link|improve this answer
feedback

CSV means C omma S eparated V alues, which is not what your document contains.

Those are semicolons.

If possible, change the PHP code to generate this instead (which is actually CSV):

ID,E-Mail_User,Name,Applikation,Rolle,Auftragsdatum,Administrator
522,user@domain,WXDUILAS,ABCD,XYZ,2009-03-04 05:00:09,user@domain

...or specify ; as the delimiter using the Text Import dialog.

link|improve this answer
Have you read the article? Especially the semicolon example? – ceving May 17 '11 at 14:16
You can also manually specify the delimiter in Calc. – Matt Ball May 17 '11 at 14:18
it does not seem to be possible, if the browser starts oocalc. – ceving May 17 '11 at 14:22
If you don't tell the program that the delimiter is ; rather than , it's not going to magically know that. – Matt Ball May 17 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.