Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/CoderWanFeng/python-office

Works with Git. The repository opens in your current directory.

📊
DataPython

Merge Excel Files

by CoderWanFeng

Merges all Excel files in a directory into a single Excel file, with each original file becoming a separate sheet. Useful for consolidating multiple Excel workbooks.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

merge2excel Skill

将多个 Excel 文件合并到一个 Excel 的不同 sheet 中

功能描述

将指定目录下的所有 Excel 文件合并到一个新的 Excel 文件中,每个原始文件对应一个新 sheet。

所属分类

office/skills/excel/merge2excel/

调用方式

from office.skills.excel import merge2excel

merge2excel(
    dir_path='./excel_files',
    output_file='./merge2excel.xlsx'
)

参数说明

参数 类型 必填 默认值 说明
dir_path str - 包含多个 Excel 文件的目录路径
output_file str 'merge2excel.xlsx' 合并后的 Excel 文件路径

返回值

None

使用示例

from office.skills.excel import merge2excel
merge2excel(dir_path='./excels', output_file='./all_in_one.xlsx')

视频教程

https://www.bilibili.com/video/BV1Th4y1Y7kd/

原始函数

office.api.excel.merge2excel