How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-wps-excel:conditional-formattingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```javascript
// 参数: Type, Operator, Formula1, Formula2
// Type: 1=xlCellValue, 2=xlExpression
// Operator: 1=Between, 3=Equal, 5=Greater, 6=Less, 7=GreaterEqual, 8=LessEqual
// 示例: 大于 90 的单元格标绿
var rng = ws.Range("B2:B100");
var fc = rng.FormatConditions.Add(1, 5, "90");
fc.Interior.Color = 0x00AA00;
fc.Font.Color = 0xFFFFFF;
// 示例: 等于"已完成"标绿,等于"逾期"标红
var rng = ws.Range("E2:E100");
var fc1 = rng.FormatConditions.Add(1, 3, '"已完成"');
fc1.Interior.Color = 0x00AA00;
fc1.Font.Color = 0xFFFFFF;
var fc2 = rng.FormatConditions.Add(1, 3, '"逾期"');
fc2.Interior.Color = 0x0000FF;
fc2.Font.Color = 0xFFFFFF;
var fc3 = rng.FormatConditions.Add(1, 3, '"进行中"');
fc3.Interior.Color = 0xFF8800;
fc3.Font.Color = 0xFFFFFF;
// 交替行斑马纹(用 xlExpression)
var fc = rng.FormatConditions.Add(2, 0, "=MOD(ROW(),2)=0");
fc.Interior.Color = 0xFFF0E0;
// 整行高亮(当 E 列="逾期" 时整行变红)
var fc = ws.Range("A2:Z100").FormatConditions.Add(2, 0, '=$E2="逾期"');
fc.Interior.Color = 0xCCCCFF;
ws.Range("A1:Z1000").FormatConditions.Delete();
当用户要求"美化表格"时,按以下标准执行:
function CL(c){var s="";while(c>0){c--;s=String.fromCharCode(65+(c%26))+s;c=Math.floor(c/26);}return s;}
var ws = Application.ActiveSheet;
var ur = ws.UsedRange;
var r1 = ur.Row, c1 = ur.Column;
var rEnd = r1 + ur.Rows.Count - 1;
var cEnd = c1 + ur.Columns.Count - 1;
// 1. 表头样式(首行)
var hdr = ws.Range(CL(c1) + r1 + ":" + CL(cEnd) + r1);
hdr.Font.Bold = true;
hdr.Font.Color = 0xFFFFFF;
hdr.Interior.Color = 0x8B4513;
hdr.HorizontalAlignment = -4108;
ws.Range(r1 + ":" + r1).RowHeight = 32;
// 2. 数据区域
var data = ws.Range(CL(c1) + (r1 + 1) + ":" + CL(cEnd) + rEnd);
data.Font.Size = 11;
data.VerticalAlignment = -4108;
// 3. 交替行背景色
for (var r = r1 + 1; r <= rEnd; r++) {
if ((r - r1) % 2 === 0) {
ws.Range(CL(c1) + r + ":" + CL(cEnd) + r).Interior.Color = 0xFFF0E0;
}
}
// 4. 自动列宽
for (var c = c1; c <= cEnd; c++) {
ws.Range(CL(c) + ":" + CL(c)).ColumnWidth = 15;
}
// 5. 数字列自动格式化
// 检测列内容类型,设置合适的 NumberFormat
| 方案 | 表头 BGR | 交替行 BGR | 适用场景 |
|---|---|---|---|
| 商务蓝 | 0x8B4513 | 0xFFF0E0 | 通用/报表 |
| 清新绿 | 0x006633 | 0xE0FFE0 | 数据分析 |
| 优雅灰 | 0x666666 | 0xF5F5F5 | 简约/打印 |
| 活力橙 | 0x0055D9 | 0xE0EEFF | 营销/展示 |
npx claudepluginhub claude-office-skills/claude-office-pluginCreates, edits, analyzes spreadsheets (.xlsx, .csv, .tsv) using openpyxl and pandas; preserves formulas, formatting, references for accurate Excel workflows.
Creates, reads, and modifies Excel spreadsheets with formulas and formatting. Provides standards for financial models including color coding, number formatting, and formula construction.
Creates, edits, and analyzes Excel (.xlsx/.csv) spreadsheets with formulas, formatting, and visualization using openpyxl and pandas. Includes financial model standards.