-
Notifications
You must be signed in to change notification settings - Fork 145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Save as CSV is not separated by commas #352
Comments
This is also a major issue for me as i normally create analysis with excel files, i would love if the CVS files are displayed properly, i hope this is fixed soon. Omonluimhen Godwin Peter IT/Tracking Date: Fri, 20 Nov 2015 04:48:38 -0800 The CSV file is actually separated by semicolon. If you open in excel the whole line is in a single column. If you edit in notepad and replace all ; with , it opens correctly in excel. — |
The separator is actually locale-dependent because for example comma may be treated as decimal separator. Thus, I believe using ';' separator always is a more universal solution See this for more info: https://en.wikipedia.org/wiki/Comma-separated_values You can try the solution from here: http://superuser.com/questions/180964/how-to-open-semicolon-delimited-csv-files-in-us-version-of-excel (like add |
Each of the column values are inside quotes so using comma as a column separator doesn't affect the comma when used as decimal separator. This will show up as 2 columns in excel not 3: |
Most probably I will end with putting 'sep=;' at the beginning of output file. |
… separator symbol at the beginning of file with 'sep=' line
I have made the following changes:
I believe this should cover all cases. I have checked it in MS Excel 2010 and it works just fine. This is not yet included in the public available release, but it will be included in next version coming next week. |
Hi Litvak I think it would be great to make reports open in a new tab and also be able to export the report to CSV file format. Godwin Peter .O From: Vitaly Litvakmailto:[email protected] I have made the following changes:
I believe this should cover all cases. I have checked it in MS Excel 2010 and it works just fine. This is not yet included in the public available release, but it will be included in next version coming next week. Reply to this email directly or view it on GitHub: |
In future probably it will be possible to export reports to different formats: HTML (now implemented), XLS and PDF. As for opening in new tab, it is already implemented, there will be a 'preview' check box in the report profile. Will be included in next version. Please don't post any further questions related with reports in this thread because it is related with exporting of archive data to CSV. |
The CSV file is actually separated by semicolon. If you open in excel the whole line is in a single column.
If you edit in notepad and replace all ; with , it opens correctly in excel.
The text was updated successfully, but these errors were encountered: