NPOI.Extension icon indicating copy to clipboard operation
NPOI.Extension copied to clipboard

This repo contains the extension for the NPOI, which provides IEnumerable<T> have save to and load from excel functionalities.

Results 6 NPOI.Extension issues
Sort by recently updated
recently updated
newest added

Bumps [SharpZipLib](https://github.com/icsharpcode/SharpZipLib) from 0.86.0 to 1.3.3. Release notes Sourced from SharpZipLib's releases. v1.3.3 Another minor release, containing security fixes and smaller bugfixes. Fixes: 🐛 specialized tar extract traversal by nils...

dependencies

更改核心库 NPOI 为原本库

> 背景 在导入excel时,需要动态的决定那些行是真实的有效行数据 例如:当第二列没填值时,这一行为无效数据,输出结果中不应该包含这一行数据 > 建议 增加参数**Func customerRowsFilter = null)**,在处理每行数据时先校验传入的委托,决定是否要加入到输出结果中 public static IEnumerable Load(string excelFile, int startRow = 1, int sheetIndex = 0, ValueConverter valueConverter = null, Func customerRowsFilter =...

feature_request

> 背景 在导入Excel时 excel文件如下: 单元格A2:A2 单元格B2:=CONCATENATE("test", A2) 实体类 public ExcelData{ [Column(Index = 0)] public string A{get;set;} [Column(Index = 1)] public string B{get;set;} } var data = Excel.Load(file, sheetIndex: 1); >...

bug

` case CellType.Numeric: if (HSSFDateUtil.IsCellDateFormatted(cell))//日期类型 { if (!string.IsNullOrEmpty(cellConfig?.Formatter)) { return cell.DateCellValue.ToString(cellConfig?.Formatter); } return cell.DateCellValue.ToString(); } else//其他数字类型 { return cell.ToString(); } `