Hi,
we have to read a csv file with aspose that contains more then 32767 columns.
If we try this the Worksheet.Cells.MaxColumnsis 32767 and Worksheet.Cells.MaxDataColumn is -1.
Is there a limitation to 32k columns?
Regards, Jochen Bernhardt
Hi,
we have to read a csv file with aspose that contains more then 32767 columns.
If we try this the Worksheet.Cells.MaxColumnsis 32767 and Worksheet.Cells.MaxDataColumn is -1.
Is there a limitation to 32k columns?
Regards, Jochen Bernhardt
Hi,
Hi,i produced the error with the attached file and the following code:
var options = new TxtLoadOptions(LoadFormat.CSV);
options.Separator = ',';
_workbook = new Workbook(filename, options);
_worksheet = _workbook.Worksheets[_workbook.Worksheets.ActiveSheetIndex];
Thanks
Hi,
Hi
thanks for your reply, its right excel cant open this file. But i don't create this file by excel and i dont want to open this file in excel.
I only want to read this file with aspose cells.
And i think that is not really a suitable way to split this file manuelly in different files. The cells have different sizes for each row so some one has to count for each row the cells - for example up to 15000... with out errors? I think even if mircosoft suggest this - this is not really a solution in a time of automatication of processes!
Regards, Jochen Bernhardt
Hi,
Hi,