Hello!
There is an exception when running the code below with the file attached:
string sourseFileName = rootFolder + “9.xlsx”;
using (FileStream fstream = new FileStream(sourseFileName, FileMode.Open))
{
var sourceWorkbook = new AC.Workbook(
fstream,
new AC.LoadOptions() {ParsingFormulaOnOpen = false });
var namedRanges = sourceWorkbook.Worksheets.GetNamedRanges();
}
Thanks,
Leo