LightweightExcelReader icon indicating copy to clipboard operation
LightweightExcelReader copied to clipboard

The fastest way to read Excel data in .NET

Results 7 LightweightExcelReader issues
Sort by recently updated
recently updated
newest added

If you try to read an Excel which has some columns in format TIME or CUSTOM (hh:mm:ss), it throws an exception: "oleaut the date is not valid". The exception: ```...

Added a possibility to dispose all active streams of the excel-file by using ExcelReader.Dispose(). This enables to edit a excel-file after it was read by the LightweightExcelReader.

I receive the above when referencing some cells. I believe through elimination that it's where a cell sits beneath a hidden row or there are merged cells in the worksheet....

Have you tried to read a table with millions of rows?

The `ExcelReader` creates streams, like `ZippedXlsxFile`, but it never disposes them.

e.g. `public IReadOnlyList SheetNames => _sheetnameLookup.Keys.ToList();` And