-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Labels
Description
Hi I try to edit my excel file by electron.
but the thing is
After doing this, it loses some formats and the document becomes spoiled.
I mean It loses some report formats and becomes strange.
wb.xlsx.readFile(sourceFileName).then(function(){
let SheetName = "Sheet1";
var sh;
sh = wb.getWorksheet(SheetName);
var cell = sh.getCell('C6');
cell.value = 242;
wb.xlsx.writeFile(fileName).then(function(){
});
});
Is it possible to edit the excel file without read and write method?