Aspose Finance XLSX Conversion

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);

I found another post with the same error message but for Aspose .NET 5.2.1 library. A setting Workbook.Settings.CheckExcelRestriction was suggested to fix the issue. Is there any setting in the Aspose Finance library to fix this issue?

This topic has been moved to the related forum: Aspose Finance XLSX Conversion - Free Support Forum - aspose.com