The code below works with the error: "Extern sheet is part of LinkTable". I use NPOI 2.3.0 to work with Excel.
HSSFWorkbook xlsFile; using (var fileRead = new FileStream(FileName, FileMode.Open, FileAccess.Read)) { try { xlsFile = new HSSFWorkbook(fileRead); } catch (Exception ex) { MessageBox.Show(ex.Message); } } Tell me how to open this file using NPOI? Microsoft Office opens this file and can save it. After resave, the file size is reduced to a smaller side and NPOI easily opens this file.
But you need to work with NPOI. I tried to download the file through POIFS, and not immediately create an HSSFWorkbook object. But nothing sensible happened.
File with error: fileWithException