Block 1 - When clicking ‘Execute workflow’
- Type / Role
- n8n-nodes-base.manualTrigger - manualTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
This workflow automates the process of merging multiple files from a designated folder into a single, well organized Excel workbook. Each input file is converted into its own sheet within the outpu...
n8n-nodes-base.manualtrigger, n8n-nodes-base.splitinbatches, n8n-nodes-base.readwritefile, n8n-nodes-base.code, n8n-nodes-base.stickynote, n8n-nodes-base.extractfromfile, n8n-nodes-base.aggregate
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Simone.
Original n8n.io sourceThis workflow automates the process of merging multiple .xlsx files from a designated folder into a single, well-organized Excel workbook. Each input file is converted into its own sheet within the output file. Additionally, a summary sheet is generated at the beginning, providing a convenient overview of all merged files, including their original names and the number of records in each.
This is particularly useful for consolidating reports, combining data from different sources, or archiving multiple spreadsheets into one manageable file.
The workflow follows these key steps:
.xlsx extension from the /n8n_files/ directory (ensure your volume is mapped correctly).xlsx library. It creates a new Excel workbook in memory, adds a sheet for each processed file, and populates it with the corresponding data. It also creates a "Summary" sheet that lists all the source files and their record counts..xlsx file in the /n8n_files/output/ directory with a timestamped filename (e.g., 合并文件_20250908T123000.xlsx).To use this workflow, you need to configure your n8n instance to allow and use the external xlsx npm module.
/n8n_files/ in your n8n container.docker-compose.yml file:environment:
- NODE_FUNCTION_ALLOW_EXTERNAL=xlsx
xlsx library.docker-compose.yml, create a file named Dockerfile.Dockerfile:FROM n8nio/n8n:latest
USER root
RUN npm install xlsx
USER node
docker-compose.yml, replace the image: n8nio/n8n... line with build: . for the n8n service.docker-compose up --build -d..xlsx file.xlsx library.This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Merge multiple Excel files into a single multi-sheet file with summary page |
|---|---|
| Complexity | intermediate |
| Nodes | 11 |
| Categories | Document Extraction |
| Author | Simone |
| Published | 08 Sept 2025 |
Use the JSON export at /data/workflows/8373/8373.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
This workflow automates the process of merging multiple files from a designated folder into a single, well organized Excel workbook. Each input file is converted into its own sheet within the outpu...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction use case.