XML to XLSX conversion populates empty cell

Hi

When using Aspose.Cells 7.2 (it happens on earlier versions too) we have the XML contained in the attached Original.xml as an IO Stream and we load it as follows:

wb= New Workbook(stream)

And we then save it an an XLSX using

wb.Save

and we get the attached Cell Contains Text.xlsx

Can you see cell sheet Process Elements!C2

contains text when in the XML version it doesn't?

Is this reproduceable or is it some kind of memory bug in our code?

Mike

Hi,


Could you try to add a line while converting to XLSX file, e.g

OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(SaveFormat.Xlsx);
saveOptions.ExportCellName = true;
asposeWorkbook.Save(fileName, saveOptions);

Also use our latest fix v7.2.0.6.

Let us know your feedback.

Thank you.


Hi

We have fixed this issue.

Please download and try the fix: Aspose.Cells for .NET v7.2.0.7