Requirements for Outputs
All Excel files
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"
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.
Output Directory Convention
All files created using this workflow MUST be written to:
outputs/<document-name>/
Where <document-name> is a descriptive, lowercase, hyphenated name.
Examples: outputs/budget-2024/, outputs/quarterly-forecast/
Rules:
- Create the directory if it doesn't exist
- All intermediate files (CSV exports, recalc logs) go here
- Final output files go here
- Never write skill-generated files to the repository root or public/ directories
- Use descriptive names that clearly identify the document's purpose
Important Requirements
LibreOffice Required for Formula Recalculation: You can assume LibreOffice is installed for recalculating formula values using the recalc.py script. The script automatically configures LibreOffice on first run
Reading and analyzing data
Data analysis with pandas
For data analysis, visualization, and basic operations, use pandas which provides powerful data manipulation capabilities:
import pandas as pd
# Read Excel
df = pd.read_excel('file.xlsx') # Default: first sheet
all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict
# Analyze
df.head() # Preview data
df.info() # Column info
df.describe() # Statistics
# Write Excel
df.to_excel('output.xlsx', index=False)
Excel File Workflows
CRITICAL: Use Formulas, Not Hardcoded Values
Always use Excel formulas instead of calculating values in Python and hardcoding them. This ensures the spreadsheet remains dynamic and updateable.
❌ WRONG - Hardcoding Calculated Values
# Bad: Calculating in Python and hardcoding result
total = df['Sales'].sum()
sheet['B10'] = total # Hardcodes 5000
# Bad: Computing growth rate in Python
growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']
sheet['C5'] = growth # Hardcodes 0.15
# Bad: Python calculation for average
avg = sum(values) / len(values)
sheet['D20'] = avg # Hardcodes 42.5
✅ CORRECT - Using Excel Formulas
# Good: Let Excel calculate the sum
sheet['B10'] = '=SUM(B2:B9)'
# Good: Growth rate as Excel formula
sheet['C5'] = '=(C4-C2)/C2'
# Good: Average using Excel function
sheet['D20'] = '=AVERAGE(D2:D19)'
This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.
Common Workflow
- Choose tool: pandas for data, openpyxl for formulas/formatting
- Create/Load: Create new workbook or load existing file
- Modify: Add/edit data, formulas, and formatting
- Save: Write to file
- Recalculate formulas (MANDATORY IF USING FORMULAS): Use the recalc.py script
python recalc.py output.xlsx
- Verify and fix any errors:
- The script returns JSON with error details
- If
status is errors_found, check error_summary for specific error types and locations
- Fix the identified errors and recalculate again
- Common errors to fix:
#REF!: Invalid cell references
#DIV/0!: Division by zero
#VALUE!: Wrong data type in formula
#NAME?: Unrecognized formula name
- Visual Verification (mandatory): See Visual Verification below
Creating new Excel files
# Using openpyxl for formulas and formatting
from openpyxl import Workbook
from openpyxl.styles import Font, PatternFill, Alignment
wb = Workbook()
sheet = wb.active
# Add data
sheet['A1'] = 'Hello'
sheet['B1'] = 'World'
sheet.append(['Row', 'of', 'data'])
# Add formula
sheet['B2'] = '=SUM(A1:A10)'
# Formatting
sheet['A1'].font = Font(bold=True, color='FF0000')
sheet['A1'].fill = PatternFill('solid', start_color='FFFF00')
sheet['A1'].alignment = Alignment(horizontal='center')
# Column width
sheet.column_dimensions['A'].width = 20
wb.save('output.xlsx')
Editing existing Excel files
# Using openpyxl to preserve formulas and formatting
from openpyxl import load_workbook
# Load existing file
wb = load_workbook('existing.xlsx')
sheet = wb.active # or wb['SheetName'] for specific sheet
# Working with multiple sheets
for sheet_name in wb.sheetnames:
sheet = wb[sheet_name]
print(f"Sheet: {sheet_name}")
# Modify cells
sheet['A1'] = 'New Value'
sheet.insert_rows(2) # Insert row at position 2
sheet.delete_cols(3) # Delete column 3
# Add new sheet
new_sheet = wb.create_sheet('NewSheet')
new_sheet['A1'] = 'Data'
wb.save('modified.xlsx')
Visual Verification (mandatory)
After creating or editing any spreadsheet, you must render it to images and visually inspect the result before declaring the task complete. Structural checks (formula recalculation) catch calculation errors but cannot detect visual problems — truncated columns, broken charts, incorrect formatting, or layout issues.
Recalculate formulas first (if applicable):
python recalc.py outputs/<document-name>/workbook.xlsx
Convert to PDF:
soffice --headless --convert-to pdf --outdir outputs/<document-name>/ outputs/<document-name>/workbook.xlsx
Convert PDF to images:
pdftoppm -jpeg -r 150 outputs/<document-name>/workbook.pdf outputs/<document-name>/page
Read the page images and check for:
- Number formatting displays correctly (commas, decimals, currency symbols, no
####)
- Color coding follows conventions (blue for inputs, black for formulas)
- Column widths accommodate all content (no truncation)
- Charts render with correct data, labels, and legends
- Merged cells display properly
- Conditional formatting is visible where expected
- Headers/footers and print areas are correct
If issues are found, fix the workbook and repeat from step 1.
Do not skip this step. Do not declare a spreadsheet task complete after only formula verification.
Recalculating formulas
Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided recalc.py script to recalculate formulas:
python recalc.py <excel_file> [timeout_seconds]
Example:
python recalc.py output.xlsx 30
The script:
- Automatically sets up LibreOffice macro on first run
- Recalculates all formulas in all sheets
- Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.)
- Returns JSON with detailed error locations and counts
- Works on both Linux and macOS
Formula Verification Checklist
Quick checks to ensure formulas work correctly:
Essential Verification
Common Pitfalls
Formula Testing Strategy
Interpreting recalc.py Output
The script returns JSON with error details:
{
"status": "success", // or "errors_found"
"total_errors": 0, // Total error count
"total_formulas": 42, // Number of formulas in file
"error_summary": { // Only present if errors found
"#REF!": {
"count": 2,
"locations": ["Sheet1!B5", "Sheet1!C10"]
}
}
}
Best Practices
Library Selection
- pandas: Best for data analysis, bulk operations, and simple data export
- openpyxl: Best for complex formatting, formulas, and Excel-specific features
Working with openpyxl
- Cell indices are 1-based (row=1, column=1 refers to cell A1)
- Use
data_only=True to read calculated values: load_workbook('file.xlsx', data_only=True)
- Warning: If opened with
data_only=True and saved, formulas are replaced with values and permanently lost
- For large files: Use
read_only=True for reading or write_only=True for writing
- Formulas are preserved but not evaluated - use recalc.py to update values
Working with pandas
- Specify data types to avoid inference issues:
pd.read_excel('file.xlsx', dtype={'id': str})
- For large files, read specific columns:
pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])
- Handle dates properly:
pd.read_excel('file.xlsx', parse_dates=['date_column'])
Code Style Guidelines
IMPORTANT: When generating Python code for Excel operations:
- Write minimal, concise Python code without unnecessary comments
- Avoid verbose variable names and redundant operations
- Avoid unnecessary print statements
For Excel files themselves:
- Add comments to cells with complex formulas or important assumptions
- Document data sources for hardcoded values
- Include notes for key calculations and model sections
1---2name: office-xlsx3description: Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude 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 formulas4---56# Requirements for Outputs78## All Excel files910### Zero Formula Errors11- Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?)1213### Preserve Existing Templates (when updating templates)14- Study and EXACTLY match existing format, style, and conventions when modifying files15- Never impose standardized formatting on files with established patterns16- Existing template conventions ALWAYS override these guidelines1718## Financial models1920### Color Coding Standards21Unless otherwise stated by the user or existing template2223#### Industry-Standard Color Conventions24- **Blue text (RGB: 0,0,255)**: Hardcoded inputs, and numbers users will change for scenarios25- **Black text (RGB: 0,0,0)**: ALL formulas and calculations26- **Green text (RGB: 0,128,0)**: Links pulling from other worksheets within same workbook27- **Red text (RGB: 255,0,0)**: External links to other files28- **Yellow background (RGB: 255,255,0)**: Key assumptions needing attention or cells that need to be updated2930### Number Formatting Standards3132#### Required Format Rules33- **Years**: Format as text strings (e.g., "2024" not "2,024")34- **Currency**: Use $#,##0 format; ALWAYS specify units in headers ("Revenue ($mm)")35- **Zeros**: Use number formatting to make all zeros "-", including percentages (e.g., "$#,##0;($#,##0);-")36- **Percentages**: Default to 0.0% format (one decimal)37- **Multiples**: Format as 0.0x for valuation multiples (EV/EBITDA, P/E)38- **Negative numbers**: Use parentheses (123) not minus -1233940### Formula Construction Rules4142#### Assumptions Placement43- Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells44- Use cell references instead of hardcoded values in formulas45- Example: Use =B5*(1+$B$6) instead of =B5*1.054647#### Formula Error Prevention48- Verify all cell references are correct49- Check for off-by-one errors in ranges50- Ensure consistent formulas across all projection periods51- Test with edge cases (zero values, negative numbers)52- Verify no unintended circular references5354#### Documentation Requirements for Hardcodes55- Comment or in cells beside (if end of table). Format: "Source: [System/Document], [Date], [Specific Reference], [URL if applicable]"56- Examples:57 - "Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]"58 - "Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]"59 - "Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity"60 - "Source: FactSet, 8/20/2025, Consensus Estimates Screen"6162# XLSX creation, editing, and analysis6364## Overview6566A 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.6768## Output Directory Convention6970All files created using this workflow MUST be written to:7172 outputs/<document-name>/7374Where `<document-name>` is a descriptive, lowercase, hyphenated name.75Examples: `outputs/budget-2024/`, `outputs/quarterly-forecast/`7677Rules:781. Create the directory if it doesn't exist792. All intermediate files (CSV exports, recalc logs) go here803. Final output files go here814. Never write skill-generated files to the repository root or public/ directories825. Use descriptive names that clearly identify the document's purpose8384## Important Requirements8586**LibreOffice Required for Formula Recalculation**: You can assume LibreOffice is installed for recalculating formula values using the `recalc.py` script. The script automatically configures LibreOffice on first run8788## Reading and analyzing data8990### Data analysis with pandas91For data analysis, visualization, and basic operations, use **pandas** which provides powerful data manipulation capabilities:9293```python94import pandas as pd9596# Read Excel97df = pd.read_excel('file.xlsx') # Default: first sheet98all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict99100# Analyze101df.head() # Preview data102df.info() # Column info103df.describe() # Statistics104105# Write Excel106df.to_excel('output.xlsx', index=False)107```108109## Excel File Workflows110111## CRITICAL: Use Formulas, Not Hardcoded Values112113**Always use Excel formulas instead of calculating values in Python and hardcoding them.** This ensures the spreadsheet remains dynamic and updateable.114115### ❌ WRONG - Hardcoding Calculated Values116```python117# Bad: Calculating in Python and hardcoding result118total = df['Sales'].sum()119sheet['B10'] = total # Hardcodes 5000120121# Bad: Computing growth rate in Python122growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']123sheet['C5'] = growth # Hardcodes 0.15124125# Bad: Python calculation for average126avg = sum(values) / len(values)127sheet['D20'] = avg # Hardcodes 42.5128```129130### ✅ CORRECT - Using Excel Formulas131```python132# Good: Let Excel calculate the sum133sheet['B10'] = '=SUM(B2:B9)'134135# Good: Growth rate as Excel formula136sheet['C5'] = '=(C4-C2)/C2'137138# Good: Average using Excel function139sheet['D20'] = '=AVERAGE(D2:D19)'140```141142This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.143144## Common Workflow1451. **Choose tool**: pandas for data, openpyxl for formulas/formatting1462. **Create/Load**: Create new workbook or load existing file1473. **Modify**: Add/edit data, formulas, and formatting1484. **Save**: Write to file1495. **Recalculate formulas (MANDATORY IF USING FORMULAS)**: Use the recalc.py script150 ```bash151 python recalc.py output.xlsx152 ```1536. **Verify and fix any errors**: 154 - The script returns JSON with error details155 - If `status` is `errors_found`, check `error_summary` for specific error types and locations156 - Fix the identified errors and recalculate again157 - Common errors to fix:158 - `#REF!`: Invalid cell references159 - `#DIV/0!`: Division by zero160 - `#VALUE!`: Wrong data type in formula161 - `#NAME?`: Unrecognized formula name1627. **Visual Verification (mandatory)**: See [Visual Verification](#visual-verification-mandatory) below163164### Creating new Excel files165166```python167# Using openpyxl for formulas and formatting168from openpyxl import Workbook169from openpyxl.styles import Font, PatternFill, Alignment170171wb = Workbook()172sheet = wb.active173174# Add data175sheet['A1'] = 'Hello'176sheet['B1'] = 'World'177sheet.append(['Row', 'of', 'data'])178179# Add formula180sheet['B2'] = '=SUM(A1:A10)'181182# Formatting183sheet['A1'].font = Font(bold=True, color='FF0000')184sheet['A1'].fill = PatternFill('solid', start_color='FFFF00')185sheet['A1'].alignment = Alignment(horizontal='center')186187# Column width188sheet.column_dimensions['A'].width = 20189190wb.save('output.xlsx')191```192193### Editing existing Excel files194195```python196# Using openpyxl to preserve formulas and formatting197from openpyxl import load_workbook198199# Load existing file200wb = load_workbook('existing.xlsx')201sheet = wb.active # or wb['SheetName'] for specific sheet202203# Working with multiple sheets204for sheet_name in wb.sheetnames:205 sheet = wb[sheet_name]206 print(f"Sheet: {sheet_name}")207208# Modify cells209sheet['A1'] = 'New Value'210sheet.insert_rows(2) # Insert row at position 2211sheet.delete_cols(3) # Delete column 3212213# Add new sheet214new_sheet = wb.create_sheet('NewSheet')215new_sheet['A1'] = 'Data'216217wb.save('modified.xlsx')218```219220## Visual Verification (mandatory)221222After creating or editing any spreadsheet, you **must** render it to images and visually inspect the result before declaring the task complete. Structural checks (formula recalculation) catch calculation errors but cannot detect visual problems — truncated columns, broken charts, incorrect formatting, or layout issues.2232241. **Recalculate formulas first** (if applicable):225 ```bash226 python recalc.py outputs/<document-name>/workbook.xlsx227 ```2282292. **Convert to PDF**:230 ```bash231 soffice --headless --convert-to pdf --outdir outputs/<document-name>/ outputs/<document-name>/workbook.xlsx232 ```2332343. **Convert PDF to images**:235 ```bash236 pdftoppm -jpeg -r 150 outputs/<document-name>/workbook.pdf outputs/<document-name>/page237 ```2382394. **Read the page images** and check for:240 - Number formatting displays correctly (commas, decimals, currency symbols, no `####`)241 - Color coding follows conventions (blue for inputs, black for formulas)242 - Column widths accommodate all content (no truncation)243 - Charts render with correct data, labels, and legends244 - Merged cells display properly245 - Conditional formatting is visible where expected246 - Headers/footers and print areas are correct2472485. **If issues are found**, fix the workbook and repeat from step 1.249250Do not skip this step. Do not declare a spreadsheet task complete after only formula verification.251252## Recalculating formulas253254Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided `recalc.py` script to recalculate formulas:255256```bash257python recalc.py <excel_file> [timeout_seconds]258```259260Example:261```bash262python recalc.py output.xlsx 30263```264265The script:266- Automatically sets up LibreOffice macro on first run267- Recalculates all formulas in all sheets268- Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.)269- Returns JSON with detailed error locations and counts270- Works on both Linux and macOS271272## Formula Verification Checklist273274Quick checks to ensure formulas work correctly:275276### Essential Verification277- [ ] **Test 2-3 sample references**: Verify they pull correct values before building full model278- [ ] **Column mapping**: Confirm Excel columns match (e.g., column 64 = BL, not BK)279- [ ] **Row offset**: Remember Excel rows are 1-indexed (DataFrame row 5 = Excel row 6)280281### Common Pitfalls282- [ ] **NaN handling**: Check for null values with `pd.notna()`283- [ ] **Far-right columns**: FY data often in columns 50+ 284- [ ] **Multiple matches**: Search all occurrences, not just first285- [ ] **Division by zero**: Check denominators before using `/` in formulas (#DIV/0!)286- [ ] **Wrong references**: Verify all cell references point to intended cells (#REF!)287- [ ] **Cross-sheet references**: Use correct format (Sheet1!A1) for linking sheets288289### Formula Testing Strategy290- [ ] **Start small**: Test formulas on 2-3 cells before applying broadly291- [ ] **Verify dependencies**: Check all cells referenced in formulas exist292- [ ] **Test edge cases**: Include zero, negative, and very large values293294### Interpreting recalc.py Output295The script returns JSON with error details:296```json297{298 "status": "success", // or "errors_found"299 "total_errors": 0, // Total error count300 "total_formulas": 42, // Number of formulas in file301 "error_summary": { // Only present if errors found302 "#REF!": {303 "count": 2,304 "locations": ["Sheet1!B5", "Sheet1!C10"]305 }306 }307}308```309310## Best Practices311312### Library Selection313- **pandas**: Best for data analysis, bulk operations, and simple data export314- **openpyxl**: Best for complex formatting, formulas, and Excel-specific features315316### Working with openpyxl317- Cell indices are 1-based (row=1, column=1 refers to cell A1)318- Use `data_only=True` to read calculated values: `load_workbook('file.xlsx', data_only=True)`319- **Warning**: If opened with `data_only=True` and saved, formulas are replaced with values and permanently lost320- For large files: Use `read_only=True` for reading or `write_only=True` for writing321- Formulas are preserved but not evaluated - use recalc.py to update values322323### Working with pandas324- Specify data types to avoid inference issues: `pd.read_excel('file.xlsx', dtype={'id': str})`325- For large files, read specific columns: `pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])`326- Handle dates properly: `pd.read_excel('file.xlsx', parse_dates=['date_column'])`327328## Code Style Guidelines329**IMPORTANT**: When generating Python code for Excel operations:330- Write minimal, concise Python code without unnecessary comments331- Avoid verbose variable names and redundant operations332- Avoid unnecessary print statements333334**For Excel files themselves**:335- Add comments to cells with complex formulas or important assumptions336- Document data sources for hardcoded values337- Include notes for key calculations and model sections