Excel completed file level validation and repair. Some parts of this workbook may have been repaired or discarded.
Repaired Records: Drawing from /xl/drawings/drawing2.xml part (Drawing shape)
Repaired Records: Drawing from /xl/drawings/drawing3.xml part (Drawing shape)
when I'm saving the file with Spire.XLS:
- Code: Select all
Workbook workbook = new Workbook();
workbook.LoadFromFile(filePath);
Stream memoryStream = new MemoryStream();
workbook.SaveToStream(memoryStream);
return ((MemoryStream)memoryStream).ToArray();
What should I do?
File in attachment
Thank you