Iphone can't display xlsx properly

Hello, I’m evaluating aspose.cell product. I created a xlsx within a net application. It displays properly on PC with office 2007. But on iphone it is not showing all the columns. If I open the file with office and save it again, this time it displays on iphone correctly.

I’m sending the sample file I produced wih the product.


Hi,

Please download and use the latest version:
Aspose.Cells
for .NET v7.2.0.4



Please set the OoxmlSaveOptions.ExportCellName as true, see the following code:


C#


Aspose.Cells.OoxmlSaveOptions saveOptions = new OoxmlSaveOptions();


saveOptions.ExportCellName = true;


workbook.Save(@“D:\Filetemp\dest.xlsx”,saveOptions);