Claude
Skills
Sign in
Back

xlsx

Included with Lifetime
$97 forever

Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When GLM needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas

Data & Analytics

What this skill does


# XLSX creation, editing, and analysis

## Overview

A user may ask you to create, edit, or analyze the contents of an .xlsx file. You have different tools and workflows available for different tasks.

Must output excel files.

## Important Requirements

**Python 3 and openpyxl Required for Excel Generation**: You can assume Python 3 as the runtime environment. The `openpyxl` library is required as the primary tool for creating Excel files, managing styles, and writing formulas.

**pandas Utilized for Data Processing**: You can utilize `pandas` for efficient data manipulation and processing tasks. The processed data is subsequently exported to the final Excel file through `openpyxl`.

**LibreOffice Required for Formula Recalculation**: You can utilize `recalc.py` for formula check. You can assume LibreOffice is installed for recalculating formula values using the `recalc.py` script. The script automatically configures LibreOffice on first run.


# Requirements for Outputs

## All Excel files

## Critical Instruction Protocols

### Query Decomposition & Verification
Before generating any code, strictly analyze the user's prompt.
- **Explicit Requests**: Analyze Explicit Needs: Clearly identify the analytical objectives, constraints, required formats, the Excel sheets to be delivered (including sheet names, column definitions, calculation logic, and required metrics), as well as all data fields explicitly requested by the user. These elements define the mandatory delivery scope and specify exactly what must be built in the workbook.
- **Implicit Requests**:Analyze Implicit Needs: Evaluate the business context, intended users of the Excel file, expected interaction patterns (e.g., filtering, sorting, manual inputs), and downstream use cases such as reporting or decision support. These considerations guide how sheets are structured, formulas are designed, and results are presented to ensure usability and clarity.
- **Multi-Part Requests**: If the user asks for "two tables", "three scenarios", or "a summary and a detail sheet", you MUST generate ALL requested components.


### Zero Formula Errors
- Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?)

### Preserve Existing Templates (when updating templates)
- Study and EXACTLY match existing format, style, and conventions when modifying files
- Never impose standardized formatting on files with established patterns
- Existing template conventions ALWAYS override these guidelines


## Financial models

### Color Coding Standards
Unless otherwise stated by the user or existing template

#### Industry-Standard Color Conventions
- **Blue text (RGB: 0,0,255)**: Hardcoded inputs, and numbers users will change for scenarios
- **Black text (RGB: 0,0,0)**: ALL formulas and calculations
- **Green text (RGB: 0,128,0)**: Links pulling from other worksheets within same workbook
- **Red text (RGB: 255,0,0)**: External links to other files
- **Yellow background (RGB: 255,255,0)**: Key assumptions needing attention or cells that need to be updated

### Number Formatting Standards

#### Required Format Rules
- **Years**: Format as text strings (e.g., "2024" not "2,024")
- **Currency**: Use $#,##0 format; ALWAYS specify units in headers ("Revenue ($mm)")
- **Zeros**: Use number formatting to make all zeros "-", including percentages (e.g., "$#,##0;($#,##0);-")
- **Percentages**: Default to 0.0% format (one decimal)
- **Multiples**: Format as 0.0x for valuation multiples (EV/EBITDA, P/E)
- **Negative numbers**: Use parentheses (123) not minus -123

### Formula Construction Rules

#### Assumptions Placement
- Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells
- Use cell references instead of hardcoded values in formulas
- Example: Use =B5*(1+$B$6) instead of =B5*1.05

#### Formula Error Prevention
- Verify all cell references are correct
- Check for off-by-one errors in ranges
- Ensure consistent formulas across all projection periods
- Test with edge cases (zero values, negative numbers)
- Verify no unintended circular references

#### Documentation Requirements for Hardcodes
- Comment or in cells beside (if end of table). Format: "Source: [System/Document], [Date], [Specific Reference], [URL if applicable]"
- Examples:
  - "Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]"
  - "Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]"
  - "Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity"
  - "Source: FactSet, 8/20/2025, Consensus Estimates Screen"


## Style Rules

Implement all styling directly using the `python-openpyxl` library. The following standards define the visual architecture of the spreadsheets.

### Global Layout & Design Principles
**Layout & Dimensions**
- **Canvas Origin**: Content MUST start at cell **B2** to provide a top-left padding margin. Do not start at A1.
- **Cell Sizing**: Optimize column widths and row heights for data readability. Avoid unscaled cells (e.g., narrow columns with excessive height).
- **Title Row**: Row 2 is reserved for the title. Explicitly set row height to prevent clipping: `row_dimensions[2].height = 30` (adjust upwards if font size requires).
  
**Visual Hierarchy**
- **Professionalism**: Prioritize business-appropriate color schemes. Avoid decorative elements that distract from data.
- **Consistency**: Apply uniform fonts, borders, and colors to similar data types across the workbook.
- **White Space**: Maintain adequate margins to prevent visual crowding.
- **Alternating Row Fill**: When the data area of the table exceeds three rows, alternating row fills (white and gray) are applied by default.
- When making the chart, labels and text elements are kept as concise as possible to maximize readability, and provide a clear reference key or table nearby mapping them to their original full names.


### Font Standards (MUST FOLLOW)
- **English Text**: Always use **Times New Roman** as the default font

```python
# Font configuration example
from openpyxl.styles import Font

# English content
english_font = Font(name='Times New Roman', size=11)

```


### Title Formatting Rules (MUST FOLLOW)
- **NO Background Shading**: Titles must NOT have any background fill/shading (PatternFill)
- **Left Alignment**: All titles must be left-aligned, NOT centered
- **Bold Text**: Use bold font weight to distinguish titles instead of background colors

```python
# ✅ CORRECT Title Style

from openpyxl.styles import Font, Alignment
from openpyxl import Workbook

# Load existing file
wb = Workbook()
sheet = wb.active

title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")
title_alignment = Alignment(horizontal='left', vertical='center')

sheet['B2'] = "Report Title"
sheet['B2'].font = title_font
sheet['B2'].alignment = title_alignment
# NO fill applied - title has no background shading

# ❌ WRONG - Do NOT use background shading on titles
# title_fill = PatternFill(start_color="333333", fill_type="solid")  # FORBIDDEN
# sheet['B2'].fill = title_fill  # FORBIDDEN
```



### Visual Themes
#### 1. Default Style
**Use for:** All non-financial tasks (General data, project management, inventories).

**Color Palette Constraints**
- **Base Colors**: White (#FFFFFF), Black (#000000), and Grey scales ONLY.
- **Accent Color**: **Blue** (varying saturation) is the ONLY allowed accent color for highlighting or differentiation.
- **Restrictions**: 
  - ❌ NO Green, Red, Orange, Purple, Yellow, or Pink.
  - ❌ NO Gradients or Rainbow schemes.

```python
# Palette
from openpyxl.styles import Alignment, Border, Font, Side, PatternFill, 

# Base & Accents
background_white = "FFFFFF"           # background
background_row_alt = "E9E9E9"         # Alternating row fill
grey_header = "333333"   # Section headers
border_grey = "E3DEDE"        # Standard borders
blue_primary = "0B5CAD"       # Primary Accent

# Application Example: Data Headers (NOT Titles)
header_fill = PatternFill(s
Files: 3
Size: 27.2 KB
Complexity: 41/100
Category: Data & Analytics

Related in Data & Analytics