📊
DataPython

Merge to Sheet

by CoderWanFeng

Merge to Sheet is a Data skill for Claude Code, published by CoderWanFeng in python-office.

1.3K stars299 forkson CoderWanFeng/python-officeAdded 2026/07/20Repository updated 2026/08/04
officepippypipythonweixin
Install in seconds
Install Merge to Sheet
Copy Merge to Sheet into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/excel/merge2sheet ~/.claude/skills/merge2sheet

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

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

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/excel/merge2sheet/SKILL.md in CoderWanFeng/python-office
Installs to
~/.claude/skills/merge2sheet
Collection
One of 50 skills cataloged from this repository
Category
Data812 skills

What Merge to Sheet does

Merges multiple sheets from multiple Excel files into a single sheet. Use when combining data across spreadsheets.

Merge to Sheet is cataloged under Data on DirSkills. Merge to Sheet comes from a repository tagged office, pip, pypi, python and weixin.

Documentation

README

merge2sheet Skill

自动合并多个 Excel 文件的多个 sheet

功能描述

将多个 Excel 文件中的所有 sheet 合并到同一个 Excel 文件的同一个 sheet 中。

所属分类

office/skills/excel/merge2sheet/

调用方式

from skills.excel import merge2sheet

merge2sheet(
    dir_path='./excels',
    output_sheet_name='Sheet1',
    output_excel_name='merge2sheet'
)

参数说明

参数 类型 必填 默认值 说明
dir_path str - 包含多个 Excel 文件的目录路径
output_sheet_name str 'Sheet1' 合并后的 sheet 名称
output_excel_name str 'merge2sheet' 合并后的 Excel 文件名

返回值

None

使用示例

from skills.excel import merge2sheet
merge2sheet(dir_path='./my_excels', output_sheet_name='AllData', output_excel_name='all_merged')

原始函数

office.api.excel.merge2sheet

Frequently asked about Merge to Sheet

  • What else does CoderWanFeng publish alongside Merge to Sheet?

    Merge to Sheet is one of 50 skills that DirSkills catalogs from CoderWanFeng/python-office, the repository it ships in. Its siblings there include Add Image Watermark, Add Line by Type and Add Text Watermark. Each one is a separate skill with its own page in this directory, installs the same way Merge to Sheet does, and is maintained by CoderWanFeng in that same repository. The rest of the collection is listed on the CoderWanFeng/python-office page.

  • How does Merge to Sheet compare to other Data skills?

    Merge to Sheet ranks #414 by stars among the 812 Data skills in this catalog. The most-starred ones next to it are Benchmark Methodology, Jupyter Notebook and Solana. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Merge to Sheet against them. Open each page to compare what they document and how they install.