multiple sheet csv can't support ???
See original GitHub issue` var worksheet1 = workbook.addWorksheet(‘sheet1’,{properties: {tabColor: {argb: ‘FF00FF00’}}}) var worksheet2 = workbook.addWorksheet(‘sheet2’,{properties: {tabColor: {argb: ‘FF00FF00’}}})
worksheet1.addRows([[3,‘bob’,new Date()],[1,2,3]]); worksheet2.addRows([[4,‘Sam’,new Date()]]);
workbook.eachSheet(function(worksheet, sheetId) { console.log(worksheet) });
var st = fs.createWriteStream(‘demo.csv’);
workbook.csv.write(st) `
but csv result is
Issue Analytics
- State:
- Created 7 years ago
- Comments:5
Top Results From Across the Web
Is csv with multi tabs/sheet possible? - Stack Overflow
Your answer is in your question, don't use text/csv (which most certainly can not do multiple sheets, it can't even do one sheet;...
Read more >Adding worksheets to downloaded CSV file and saving
It can't work with multiple sheets. Whenever you re-open the file, it will only show a single sheet. It's not possible to recover...
Read more >csv did not save all tabs - microsoft excel - Super User
csv is a simple text file format. It can't store multiple sheets, pivottables, or any other advanced feature. It can't even store font...
Read more >How to Export Multiple Excel sheets to CSV or Text Files ...
Using the basic functions in Excel, you are only able to save your entire worksheet as a text file or as a CSV....
Read more >How to Import Multiple CSV Files into Separate Worksheets in ...
In this tutorial you will learn how to import multiple CSV files into separate worksheets in the same workbook in Excel.
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
@kgajowy but if you open a csv there you have an option to add another sheet , then why cant we have that feature in this package?
@kgajowy thanks,you are right