Hi, we have been using Flexcell to export data to CSV format.
However we are now experiencing a problem in which columns on the end of the dataset are not exported when they are completely empty.
When including the fieldnames (headers on first row) everything works fine (XLSX.SetCellValue(1, icol + 1, DataSet.Fields[icol].DisplayName ), but when we skip the first line/headers, columns on the end are not exported.
Hi,
I am not sure I fully understand the issue, but if the cells are empty, I think it makes sense that we don't export them.
When you pass TXlsCellRange.Null to the Export (as you are doing here), FlexCel calculates the maximum non-empty cell and exports that range. If it didn't and it exported the empry cells, it would have to export the full 16k columns.
If you want to export say 40 columns, even if the columns say from 35 to 40 are empty, you can pass a range here instead of null. For example:
Empty strings are not different from empty, there is not that distinction in Excel. Those cells are still empty.
I believe the simplest here is just to pass the range you want to export (which you should have from the dataset), but for a different case, if you want to have a "empty cell that is not empty" the way to do that would be to have an empty cell with some formatting. If the cell has formatting, it will not count as empty, even if it has no data.