I\'m receiving an error when opening my OpenXML created spreadsheet. The error is as follows.
Repaired Records: Cell information from /xl/worksheets/sheet.xml p
It's an old thread, however I had the same problem and it might be useful to someone like me who landed on this thread to find answer :)
The problem with me was that my application has an export module, and exported file from one environment was working fine, however from other it was not. It was the same error:
Repaired Records: Cell information from /xl/worksheets/sheet19.xml part
After doing a deep investigation, I found out that for one of the records in this sheet exceeding the cell limit of 32767 chars (excel limitation) and by reducing the size of texts on DB directly, solved the problem. :)
I hope it will help :)