Multiple worksheet not work with streaming
See original GitHub issueHi, I’m trying to make a xls file have three worksheets as below
let wb = new Excel.stream.xlsx.WorkbookWriter({ filename: `./stats-${new Date().toLocaleString()}.xls` });
let dataWS = wb.addWorksheet("Raw Data");
let statsWS = wb.addWorksheet("stats report 1");
let deviceStatsWs = wb.addWorksheet("stats report 2");
dataWS.addRow(row).commit();
deviceStatsWs.addRow(item).commit();
statsWS.addRow(item).commit();
wb.commit()
.then(() => {
app.log.info(`done`);
process.exit(0);
})
.catch((err) => {
app.log.error(err);
})
but only first worksheet written. Is it possible by exceljs or not a feature
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:13
Top Results From Across the Web
Add multiple worksheet to a stream workbook with ExcelJS
Using the Streaming XLSX WorkbookWriter : const Excel = require('exceljs'); const sheetNames = ["A" ...
Read more >Start streaming real-time data with the Data Streamer add-in
Learn how to stream data with Excel's Data Streamer add-in. ... Start Data button on the Data Streamer tab. The data will stream...
Read more >SAS 9.4 M5 ODS Excel output into multiple worksheets not ...
Solved: After the recent upgrade to SAS 9.4 M5 the following code does not produce an excel workbook with the output on separate...
Read more >How To: Import Multiple Excel Sheets or a Specific...
In the case where you have one Excel workbook with several sheets, you can use aDynamic Input toolto import the sheets instead of...
Read more >Get Data from Multiple Excel Files with Different Sheet Names ...
Sometimes, there is a little difference in the content of each Excel file, and you might have a column or two that do...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@m90 I’m also using LibreOffice and I got it to work after the downgrading. I’m using LibreOffice 6.0.4.2.
@m90 Workaround for now: downgrade it to 1.4.10