the attached file opens fine in excel. if i save it using aspose 7.4.3, when i open it in excel i get a message about unreadable content in the file.
string pathAndFileName = @“C:\temp\Aspose_Corrupting_Content_Excel_Prompt.xlsm”;string newPath = System.IO.Path.GetDirectoryName(pathAndFileName);
string newFileName = “test.xlsm”;string newPathAndFileName = System.IO.Path.Combine(newPath, newFileName);
Workbook workbook = new Workbook(pathAndFileName);
workbook.Save(newPathAndFileName, SaveFormat.Xlsm);