I am trying to append new rows into an existing Excel sheet but no luck.
When I use writeFile
instead of write
function, then it creates a whole new file with all the data, but I want to append the rows to the existing records.
This is the code till now. I am using SheetJs.
const reader = require('xlsx')
const wb = reader.readFile('./plan.xlsm')
const sheets = wb.SheetNames
var xl_data = reader.utils.sheet_add_json(wb.Sheets[sheets[0]], [
{ A: 4, B: 5, C: 6 }], {header: ["A", "B", "C"], skipHeader: true, origin: "A31"});
reader.utils.book_append_sheet(wb, xl_data);
reader.write(wb, {type: "binary", bookType: "xlsm" });
You can append new row to existing sheet with free version of 'xlsx'
If your question really about update file instead of write, see @Jesper answer