This repository was archived by the owner on Jan 2, 2019. It is now read-only.
empty cells in CSV export #150
Open
Description
I'm developing a mechanism which could be exporting the same data either in xlsx or csv. My data structure is not a regular rectangle, unfortunately. If x
is a single cell with content and _
is an empty cell, the whole sheet may look like:
xx__
xx__
xx__
____
xxxx
xxxx
xxxx
The exported excel is ok. But exported CSV creates blank cells which look like the following:
"Source:","my System","","","",""
"Data:","DataType","","","",""
"","","","","",""
01","13997506","90824763","6.488638976114745","143068242","10.22098093760417"
"2013- 02","13802513","89247193","6.466010428680632","139424347","10.10137407586575"
Is there any option to disable outputting blank cells in CSV? This doesn't seem to be difficult to code, but I couldn't find such things in the docs.