MiniExcel icon indicating copy to clipboard operation
MiniExcel copied to clipboard

Fast, Low-Memory, Easy Excel .NET helper to import/export/template spreadsheet (support Linux, Mac)

Results 292 MiniExcel issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/12729184/114641514-d55cf080-9d04-11eb-8d89-1c28ea05e1a7.png) --- Thinking: - use aps.net core api & vue to do it

enhancement
help wanted

![image](https://user-images.githubusercontent.com/12729184/114523322-c62f6180-9c76-11eb-9a63-c196de7c9705.png) e.g ![image](https://user-images.githubusercontent.com/12729184/114975294-940c4280-9eb6-11eb-96cf-1828cedf51fd.png) --- I think it need like vue template engine

help wanted

``` @Data @ContentRowHeight(10) @HeadRowHeight(20) @ColumnWidth(25) public class WidthAndHeightData { @ExcelProperty("字符串标题") private String string; @ExcelProperty("日期标题") private Date date; /** * 宽度为50 */ @ColumnWidth(50) @ExcelProperty("数字标题") private Double doubleData; } ```

help wanted

like easyexcel ![image](https://user-images.githubusercontent.com/12729184/114522281-d1ce5880-9c75-11eb-8653-ebb8e0df1065.png) ```java @Data public class ConverterData { /** * 我想所有的 字符串起前面加上"自定义:"三个字 */ @ExcelProperty(value = "字符串标题", converter = CustomStringStringConverter.class) private String string; /** * 我想写到excel 用年月日的格式 */ @DateTimeFormat("yyyy年MM月dd日HH时mm分ss秒") @ExcelProperty("日期标题")...

help wanted

[TestIssue165.xlsx](https://github.com/shps951023/MiniExcel/files/6475904/TestIssue165.xlsx) ![image](https://user-images.githubusercontent.com/12729184/118205992-3c9cca80-b494-11eb-821d-d86d35a3a8c7.png) ![image](https://user-images.githubusercontent.com/12729184/118205999-3eff2480-b494-11eb-9e30-ee6f9279869c.png)

enhancement
help wanted

![image](https://user-images.githubusercontent.com/12729184/114327405-80d23d80-9b6b-11eb-9d01-f0eccf5d2c01.png)

help wanted

![image](https://user-images.githubusercontent.com/12729184/114278568-0b7b4580-9a63-11eb-9ecd-3af6eaf3c240.png)

help wanted

![image](https://user-images.githubusercontent.com/12729184/114167374-72b0d100-9961-11eb-8099-1416542bc7dd.png)

help wanted

e.g ```C# void Main() { var input = new[] { new Demo{Name="Test1",Image="C:\\Test1.png"}, new Demo{Name="Test2",Image="C:\\Test2.png"} } MiniExcel.SaveAs(path, input); } public class Demo { public string Name { get; set; } [ImageUri]...

enhancement
help wanted

![image](https://user-images.githubusercontent.com/12729184/113644291-08750380-96b7-11eb-92d7-1e0b861e11a3.png)

help wanted