Hi Aspose team,
I’ve noticed a strange issue with one of my files. Namely, when I’m opening my XLS- file and immediately save it I’m getting these issues in the resulting file:
- - The dropdown on the right-hand side appears to be removed from the worksheet.
- - The same fate for the Chart.
- - Sheet1 contains word “test” in the original file. But in resulting file this word appears on the Sheet2 instead.
- - Sheet1 loses gridlines. Not a big deal but it wasn’t expected.
The versions I’m using: Windows 7 64-bit, Office 2010 32-bit, Aspose.Cells .Net 7.1.0.0.
The code sample is simple as it could be:
var loadOptions = new LoadOptions(LoadFormat.Auto)
{
LoadDataOnly = false,
ParsingFormulaOnOpen = true,
ConvertNumericData = false
};
Workbook workbook = new Workbook("Sample_original.xls", loadOptions);
workbook.Save("Processed.xls", SaveFormat.Excel97To2003);
Could you please take a look and provide a fix for the mentioned issues or provide a workaround (if any)?
Thank you in advance.