1

As mention in title, is there any other ways I can use to convert XLSB to XLSX without using Microsoft.Interop.Excel?

I have check ExcelDataReader, EPPlus, CSharpJExcel, and NPOI and it does not support XLSB.

Pukaries Alex
  • 23
  • 1
  • 3
  • I have same problem, did you find any non-paid solution without Excel or Microsoft.ACE.OLEDB.12.0 dependency ? – Muflix Jun 11 '20 at 15:46

1 Answers1

0

EasyXLS is a library that supports both xlsb and xlsx files.

The below code is what you need for conversion:

ExcelDocument workbook = new ExcelDocument();
workbook.easy_LoadXLSBFile("Excel.xlsb");
workbook.easy_WriteXLSXFile("Excel.xlsx");
alex.pulver
  • 2,107
  • 2
  • 31
  • 31