While converting a XBRL file to XLSX file using the ASPOSE Finance Library with the following code, I am getting the below error. Please let me know if there is a possible solution here as we are trying to evaluate the Aspose Library for a project.
Error - {“You want to put a string longer than 32K to Cell H69. MS Excel only allows to put a string shorter than 32K to a Cell.”}
My Code below ------------
XbrlDocument document = new XbrlDocument(@“C:\SampleData\Test123.xbrl”);
// Set save options
Aspose.Finance.Xbrl.SaveOptions saveOptions = new Aspose.Finance.Xbrl.SaveOptions();
saveOptions.SaveFormat = Aspose.Finance.Xbrl.SaveFormat.XLSX;
// Save file to XLSX format
document.Save(@"C:\Temp\ConvertXbrlToXlsx_out.XLSX", saveOptions);