---
name: Excel Helper
slug: excel-helper
category: Data
description: Excel Helper writes formulas, builds pivot tables, creates charts, automates macros, and cleans data to handle spreadsheet analysis and reporting tasks.
github: "https://github.com/dongsheng123132/u-claw/tree/main/portable/skills-cn/excel-helper"
language: HTML
stars: 1725
forks: 414
install: "npx degit https://github.com/dongsheng123132/u-claw/tree/main/portable/skills-cn/excel-helper ~/.claude/skills/excel-helper"
installs_to: ~/.claude/skills/excel-helper
source_path: portable/skills-cn/excel-helper/SKILL.md
collection_size: 17
category_size: 668
collection_url: "https://dirskills.com/collections/dongsheng123132/u-claw"
added: 2026-08-19T07:25:53.595Z
last_synced: 2026-08-19T07:25:53.595Z
canonical_url: "https://dirskills.com/skills/excel-helper"
---

# Excel Helper

Excel Helper writes formulas, builds pivot tables, creates charts, automates macros, and cleans data to handle spreadsheet analysis and reporting tasks.

**Install:**

```bash
npx degit https://github.com/dongsheng123132/u-claw/tree/main/portable/skills-cn/excel-helper ~/.claude/skills/excel-helper
```

## README

# Excel 数据助手

专业的数据处理和分析工具，帮你高效完成表格制作和数据计算。

## 核心功能

- **公式编写**: VLOOKUP、SUMIF、数据汇总、条件统计
- **数据透视表**: 快速汇总、分析、交叉表
- **图表可视化**: 柱状图、折线图、饼图、组合图
- **数据清洗**: 去重、填充、格式统一
- **宏自动化**: VBA 宏录制和编写

## 常用公式模板

### 汇总统计
```excel
=SUMIF(A:A,">=2024-01-01",B:B)          -- 条件求和
=COUNTIF(B:B,">100")                      -- 条件计数
=AVERAGEIF(C:C,"北京",D:D)                -- 条件平均
```

### 查找引用
```excel
=VLOOKUP(E2,数据源!A:C,3,FALSE)          -- 垂直查找
=INDEX(B:B,MATCH(D2,A:A,0))              -- 反向查找
=XLOOKUP(查找值,查找列,返回列)             -- 现代查找
```

### 日期处理
```excel
=TEXT(A2,"YYYY-MM")                       -- 格式化日期
=EDATE(B2,3)                              -- 日期加减
=WEEKDAY(C2,2)                            -- 星期几
```

## 图表选择指南

| 数据类型 | 推荐图表 |
|----------|----------|
| 趋势变化 | 折线图 |
| 比较大小 | 柱状图 |
| 占比构成 | 饼图 |
| 关联关系 | 散点图 |
| 多维数据 | 雷达图 |

## 数据透视表技巧

1. 拖拽字段到行/列/值/筛选区域
2. 值汇总方式：求和、计数、平均值
3. 值显示方式：百分比、累计
4. 切片器：交互式筛选

## 使用示例

```
帮我写一个统计月度销售额的公式，需要按地区分类汇总
```

```
有一份客户数据表，有很多重复记录，帮我写清洗步骤
```

```
把这些数据做成可视化图表，展示季度对比趋势
```

## VBA 常用宏

```vba
Sub 批量格式化()
    For Each cell In Selection
        If cell.Value > 100 Then
            cell.Interior.Color = RGB(255, 0, 0)
        End If
    Next
End Sub
```

## 适用场景

- 数据汇总报表
- 财务对账
- 销售数据分析
- 库存管理
- 问卷调查结果分析

## 不适用场景

- Word 长文撰写（用 word-writer）
- PPT 演示制作（用 ppt-designer）
- 复杂编程逻辑（用 deepseek-helper）
