---
name: Merge Excel Files
slug: merge-excel-files
category: Data
description: 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.
github: "https://github.com/CoderWanFeng/python-office/tree/develop/skills/excel/merge2excel"
language: Python
stars: 1331
forks: 297
install: "git clone https://github.com/CoderWanFeng/python-office"
added: 2026-07-20T06:48:41.185Z
last_synced: 2026-07-28T07:00:48.880Z
canonical_url: "https://dirskills.com/skills/merge-excel-files"
---

# Merge Excel Files

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.

**Install:** `git clone https://github.com/CoderWanFeng/python-office`

## README

# merge2excel Skill

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

## 功能描述

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

## 所属分类

`office/skills/excel/merge2excel/`

## 调用方式

```python
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`

## 使用示例

```python
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`
