Excel document mostly empty when opened in Open office 3.3

It seems that if I create an excel document (xlsx) using Aspose cells and then open in open office 3.3 on windows or linux the doucment is mostly blank. Most text fields seems to appear - but no numeric data.

If anyone has any ideas - please help!

Thanks

Hi,

Thanks for your posting and considering Aspose.Cells.

I am unable to find out the problem you mentioned. Please see the code below and the output xlsx file.

Both string and numeric data appears

When I opened in Open Office 3.3, it shows fine. Please see the screenshot.

Please download and use the latest version:
Aspose.Cells for .NET (Latest Version)


If the problem still persists, then please create a sample application to replicate the problem and post it here, we will look into it and help you asap.

C#


string filePath = @“F:\Shak-Data-RW\Downloads\source.xlsx”;


Workbook workbook = new Workbook(filePath);


workbook.Worksheets[0].Cells[“A1”].PutValue(“Welcome Aspose!”);
workbook.Worksheets[0].Cells[“A2”].PutValue(2);


workbook.Save(filePath + “.out.xlsx”);