MiniExcel
MiniExcel copied to clipboard
Support batch update cell value

Draft :
void Main()
{
var updateCells = new Dictionary<string, object>()
{
{"A1","A1_Update"},{"B15","B15_Upadte"},{"H12","H12_Update"}
};
var Path = "xxx.xlsx";
MiniExcel.Upate(filePath:Path,sheetName:"Sheet2",updateCells);
}
Problems:
- Need to load all excel data then update every time