Hi,
I have a file in XLS format, and when I try to save it as XLSX, or XLSM format I have an error :
“No node found, the formula should have been corrupted”
In the ZIP file you have the originalDocument.XLS
OriginalDocument.zip (28.3 KB)
Here is the code I use :
workbook workbook = new Workbook(dataDir + "OriginalDocument.xls");
workbook.Save(dataDir + "outputDocument.xlsx", SaveFormat.Xlsx);
workbook.Save(dataDir + "outputDocument.xlsm", SaveFormat.Xlsm);
Thanks.