Multiple sheets
See original GitHub issueWhen need to convert data mutiple sheets parralel. As first need to get sheets name, after it for each sheet call parser ( readXlsxFile(file, { sheet: ‘eachSheetName’ } ) )
Can do that for one call function readXlsxFile.
Example
readXlsxFile(file, {
multipleSheetMode: true,
config: [
{
sheet: 'first sheet',
schema: schemaOfFirstSheet,
transformData: () => {}
},
{
sheet: 'second sheet',
schema: schemaOfSecondSheet,
transformData: () => {}
},
]
})
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Excel 2016: Working with Multiple Worksheets - GCFGlobal
Use multiple worksheets in Excel when working with a large amount of data so it is better organized and easier to find content....
Read more >Combine data from multiple sheets - Microsoft Support
To summarize and report results from separate worksheets, you can consolidate data from each into a master worksheet. The worksheets can be in...
Read more >Manage multiple sheets in Google Sheets – help page - Ablebits
How to select multiple sheets to manage them all at once · Click the Selection mode option: · Alternatively, you can press and...
Read more >How to Sum Across Multiple Sheets in Excel? (3D SUM ...
If you need to get the sum across multiple worksheets, you can use one of the less-known Excel feature called 3D referencing.
Read more >How to use multiple sheets in your app - AppSheet Help
You can add multiple standalone spreadsheet files as AppSheet tables. It's also possible to create AppSheet tables from different worksheets within the same ......
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
It could be.
But I don’t want to do that.
but that is heavy task, it can be more optimized
My suggested variant can take less time and resource for do that task