How to create/ add a new sheet file in an already existing xlsx file using the xlsx package by sheetjs in Node js?
This is my code by far, for an existing "todo-list.xlsx" file.
const xlsx = require('xlsx');
workBook = xlsx.readFile("todo-list.xlsx", {cellDates:true});
I would like to do something like this (this is done by using the Excel JS package):
const sheet = workbookStream.addSheet('sheet1');
... but using the xlsx package.
Thank you very much in advanced!
There is an example of adding a new worksheet to an existing workbook In the official documentation:
See Working with the Workbook