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
# 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
# ✅ 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.
# 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(start_color=grey_header, end_color=grey_header, fill_type="solid")
header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)
for cell in sheet['B3:E3'][0]:
cell.fill = header_fill
cell.font = header_font
# Example: Title style (NO shading, left-aligned)
title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")
title_alignment = Alignment(horizontal='left', vertical='center')
sheet['B2'].font = title_font
sheet['B2'].alignment = title_alignment
# NO fill for titles
2. Professional Finance Style
Use for: Financial, fiscal, and market analysis (Stock data, GDP, Budgets, P&L, ROI).
Market Data Color Convention (Critical)
Apply the following color logic based on the target region:
| Region |
Price Up / Positive |
Price Down / Negative |
| China (Mainland) |
Red |
Green |
| International |
Green |
Red |
# Professional Finance Palette
from openpyxl.styles import PatternFill, Font
text_dark = "000000"
background_light = "E6E8EB"
header_fill_blue = "1B3F66"
metrics_highlight_warm = "F5E6D3"
negative_red = "FF0000"
# Data Headers Example
pfs_header_fill = PatternFill(start_color=header_fill_blue, end_color=header_fill_blue, fill_type="solid")
pfs_header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)
for cell in sheet['B3:E3'][0]:
cell.fill = pfs_header_fill
cell.font = pfs_header_font
# Default font - Times New Roman for English
default_font = Font(name='Times New Roman', size=11, color=text_dark)
# Example: Title style (NO shading, left-aligned)
# NO fill for titles
title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")
title_alignment = Alignment(horizontal='left', vertical='center')
sheet['B2'].font = title_font
sheet['B2'].alignment = title_alignment
# Example: Apply header style (for data headers, NOT titles)
header_fill = PatternFill(start_color=grey_header, end_color=grey_header, fill_type="solid")
header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)
for cell in sheet['B3:E3'][0]: # Data headers, not title row
cell.fill = header_fill
cell.font = header_font
Content Color Conventions
Apply specific font colors to indicate data source and functionality (consistent with Financial Model requirements):
- Blue Font: Hardcoded inputs and fixed values.
- Black Font: Calculated results and formulas.
- Green Font: References to other worksheets within the same file.
- Red Font: References to external files or sources.
Chart Creation Notes
1. Data Source Must Contain “Actual Values”
- Excel formulas written via openpyxl are not automatically calculated, which can cause charts to appear blank because no cached values are available.
- You can use
recalc.py to calculate the values so that charts reference computed results.
- Finally, use
recalc.py again to perform a validation check.
2. Reference Range Must Match Title Settings
- When
titles_from_data=True is set, the first row of the reference range must contain text headers.
If this row is empty or contains numeric data, it may result in incorrect series names or data misalignment.
- Ensure that the chart’s reference range starts from the data rows and does not incorrectly include title rows.
3. Impact of “Visibility” on Chart Data
- By default, Excel charts do not plot data from hidden rows or columns (auxiliary tables are often hidden).
You must explicitly disable the “plot visible cells only” option, otherwise the chart will appear blank.
# After hiding auxiliary data rows, for each chart object,
# set plot_visible_only to False. This line is required.
chart.plot_visible_only = False
Workflows
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
- Think and Plan: Plan all sheets structure, formulas, cross-references before coding
- 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
#NAME?: Unrecognized formula name
- When writing to Excel, do not directly assign plain text that begins with “=” to a cell; otherwise, the system may misinterpret it as an invalid formula and trigger a
#NAME? error.
- For non-calculative descriptive text (such as legends), be sure to remove the leading equals sign before writing it in code, so it is correctly recognized as a regular string.
#VALUE!: Wrong data type in formula
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')
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: xlsx3description: 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 formulas4license: Proprietary. LICENSE.txt has complete terms5---67# XLSX creation, editing, and analysis89## Overview1011A 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.1213Must output excel files.1415## Important Requirements1617**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.1819**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`.2021**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.2223# Requirements for Outputs2425## All Excel files2627## Critical Instruction Protocols2829### Query Decomposition & Verification3031Before generating any code, strictly analyze the user's prompt.3233- **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.34- **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.35- **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.3637### Zero Formula Errors3839- Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?)4041### Preserve Existing Templates (when updating templates)4243- Study and EXACTLY match existing format, style, and conventions when modifying files44- Never impose standardized formatting on files with established patterns45- Existing template conventions ALWAYS override these guidelines4647## Financial models4849### Color Coding Standards5051Unless otherwise stated by the user or existing template5253#### Industry-Standard Color Conventions5455- **Blue text (RGB: 0,0,255)**: Hardcoded inputs, and numbers users will change for scenarios56- **Black text (RGB: 0,0,0)**: ALL formulas and calculations57- **Green text (RGB: 0,128,0)**: Links pulling from other worksheets within same workbook58- **Red text (RGB: 255,0,0)**: External links to other files59- **Yellow background (RGB: 255,255,0)**: Key assumptions needing attention or cells that need to be updated6061### Number Formatting Standards6263#### Required Format Rules6465- **Years**: Format as text strings (e.g., "2024" not "2,024")66- **Currency**: Use $#,##0 format; ALWAYS specify units in headers ("Revenue ($mm)")67- **Zeros**: Use number formatting to make all zeros "-", including percentages (e.g., "$#,##0;($#,##0);-")68- **Percentages**: Default to 0.0% format (one decimal)69- **Multiples**: Format as 0.0x for valuation multiples (EV/EBITDA, P/E)70- **Negative numbers**: Use parentheses (123) not minus -1237172### Formula Construction Rules7374#### Assumptions Placement7576- Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells77- Use cell references instead of hardcoded values in formulas78- Example: Use =B5*(1+$B$6) instead of =B5*1.057980#### Formula Error Prevention8182- Verify all cell references are correct83- Check for off-by-one errors in ranges84- Ensure consistent formulas across all projection periods85- Test with edge cases (zero values, negative numbers)86- Verify no unintended circular references8788#### Documentation Requirements for Hardcodes8990- Comment or in cells beside (if end of table). Format: "Source: [System/Document], [Date], [Specific Reference], [URL if applicable]"91- Examples:92 - "Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]"93 - "Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]"94 - "Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity"95 - "Source: FactSet, 8/20/2025, Consensus Estimates Screen"9697## Style Rules9899Implement all styling directly using the `python-openpyxl` library. The following standards define the visual architecture of the spreadsheets.100101### Global Layout & Design Principles102103**Layout & Dimensions**104105- **Canvas Origin**: Content MUST start at cell **B2** to provide a top-left padding margin. Do not start at A1.106- **Cell Sizing**: Optimize column widths and row heights for data readability. Avoid unscaled cells (e.g., narrow columns with excessive height).107- **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).108109**Visual Hierarchy**110111- **Professionalism**: Prioritize business-appropriate color schemes. Avoid decorative elements that distract from data.112- **Consistency**: Apply uniform fonts, borders, and colors to similar data types across the workbook.113- **White Space**: Maintain adequate margins to prevent visual crowding.114- **Alternating Row Fill**: When the data area of the table exceeds three rows, alternating row fills (white and gray) are applied by default.115- 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.116117### Font Standards (MUST FOLLOW)118119- **English Text**: Always use **Times New Roman** as the default font120121```python122# Font configuration example123from openpyxl.styles import Font124125# English content126english_font = Font(name='Times New Roman', size=11)127128```129130### Title Formatting Rules (MUST FOLLOW)131132- **NO Background Shading**: Titles must NOT have any background fill/shading (PatternFill)133- **Left Alignment**: All titles must be left-aligned, NOT centered134- **Bold Text**: Use bold font weight to distinguish titles instead of background colors135136```python137# ✅ CORRECT Title Style138139from openpyxl.styles import Font, Alignment140from openpyxl import Workbook141142# Load existing file143wb = Workbook()144sheet = wb.active145146title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")147title_alignment = Alignment(horizontal='left', vertical='center')148149sheet['B2'] = "Report Title"150sheet['B2'].font = title_font151sheet['B2'].alignment = title_alignment152# NO fill applied - title has no background shading153154# ❌ WRONG - Do NOT use background shading on titles155# title_fill = PatternFill(start_color="333333", fill_type="solid") # FORBIDDEN156# sheet['B2'].fill = title_fill # FORBIDDEN157```158159### Visual Themes160161#### 1. Default Style162163**Use for:** All non-financial tasks (General data, project management, inventories).164165**Color Palette Constraints**166167- **Base Colors**: White (#FFFFFF), Black (#000000), and Grey scales ONLY.168- **Accent Color**: **Blue** (varying saturation) is the ONLY allowed accent color for highlighting or differentiation.169- **Restrictions**:170 - ❌ NO Green, Red, Orange, Purple, Yellow, or Pink.171 - ❌ NO Gradients or Rainbow schemes.172173```python174# Palette175from openpyxl.styles import Alignment, Border, Font, Side, PatternFill,176177# Base & Accents178background_white = "FFFFFF" # background179background_row_alt = "E9E9E9" # Alternating row fill180grey_header = "333333" # Section headers181border_grey = "E3DEDE" # Standard borders182blue_primary = "0B5CAD" # Primary Accent183184# Application Example: Data Headers (NOT Titles)185header_fill = PatternFill(start_color=grey_header, end_color=grey_header, fill_type="solid")186header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)187188for cell in sheet['B3:E3'][0]:189 cell.fill = header_fill190 cell.font = header_font191192# Example: Title style (NO shading, left-aligned)193title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")194title_alignment = Alignment(horizontal='left', vertical='center')195sheet['B2'].font = title_font196sheet['B2'].alignment = title_alignment197# NO fill for titles198```199200#### 2. Professional Finance Style201202**Use for:** Financial, fiscal, and market analysis (Stock data, GDP, Budgets, P&L, ROI).203204**Market Data Color Convention (Critical)**205Apply the following color logic based on the target region:206207| Region | Price Up / Positive | Price Down / Negative |208| -------------------- | ------------------- | --------------------- |209| **China (Mainland)** | **Red** | **Green** |210| **International** | **Green** | **Red** |211212```python213# Professional Finance Palette214from openpyxl.styles import PatternFill, Font215216text_dark = "000000"217background_light = "E6E8EB"218header_fill_blue = "1B3F66"219metrics_highlight_warm = "F5E6D3"220negative_red = "FF0000"221222223# Data Headers Example224pfs_header_fill = PatternFill(start_color=header_fill_blue, end_color=header_fill_blue, fill_type="solid")225pfs_header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)226227for cell in sheet['B3:E3'][0]:228 cell.fill = pfs_header_fill229 cell.font = pfs_header_font230231232# Default font - Times New Roman for English233default_font = Font(name='Times New Roman', size=11, color=text_dark)234235# Example: Title style (NO shading, left-aligned)236# NO fill for titles237title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")238title_alignment = Alignment(horizontal='left', vertical='center')239sheet['B2'].font = title_font240sheet['B2'].alignment = title_alignment241242# Example: Apply header style (for data headers, NOT titles)243header_fill = PatternFill(start_color=grey_header, end_color=grey_header, fill_type="solid")244header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)245for cell in sheet['B3:E3'][0]: # Data headers, not title row246 cell.fill = header_fill247 cell.font = header_font248```249250### Content Color Conventions251252Apply specific font colors to indicate data source and functionality (consistent with Financial Model requirements):253254- **Blue Font**: Hardcoded inputs and fixed values.255- **Black Font**: Calculated results and formulas.256- **Green Font**: References to other worksheets within the same file.257- **Red Font**: References to external files or sources.258259## Chart Creation Notes260261### 1. Data Source Must Contain “Actual Values”262263- Excel formulas written via **openpyxl** are not automatically calculated, which can cause charts to appear blank because no cached values are available.264- You can use `recalc.py` to calculate the values so that charts reference computed results.265- Finally, use `recalc.py` again to perform a validation check.266267### 2. Reference Range Must Match Title Settings268269- When `titles_from_data=True` is set, **the first row of the reference range must contain text headers**.270 If this row is empty or contains numeric data, it may result in incorrect series names or data misalignment.271- Ensure that the chart’s reference range starts from the data rows and does not incorrectly include title rows.272273### 3. Impact of “Visibility” on Chart Data274275- By default, Excel charts do not plot data from hidden rows or columns (auxiliary tables are often hidden).276 You must **explicitly disable the “plot visible cells only” option**, otherwise the chart will appear blank.277278```python279# After hiding auxiliary data rows, for each chart object,280# set plot_visible_only to False. This line is required.281chart.plot_visible_only = False282```283284# Workflows285286## Reading and analyzing data287288### Data analysis with pandas289290For data analysis, visualization, and basic operations, use **pandas** which provides powerful data manipulation capabilities:291292```python293import pandas as pd294295# Read Excel296df = pd.read_excel('file.xlsx') # Default: first sheet297all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict298299# Analyze300df.head() # Preview data301df.info() # Column info302df.describe() # Statistics303304# Write Excel305df.to_excel('output.xlsx', index=False)306```307308## Excel File Workflows309310## CRITICAL: Use Formulas, Not Hardcoded Values311312**Always use Excel formulas instead of calculating values in Python and hardcoding them.** This ensures the spreadsheet remains dynamic and updateable.313314### ❌ WRONG - Hardcoding Calculated Values315316```python317# Bad: Calculating in Python and hardcoding result318total = df['Sales'].sum()319sheet['B10'] = total # Hardcodes 5000320321# Bad: Computing growth rate in Python322growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']323sheet['C5'] = growth # Hardcodes 0.15324325# Bad: Python calculation for average326avg = sum(values) / len(values)327sheet['D20'] = avg # Hardcodes 42.5328```329330### ✅ CORRECT - Using Excel Formulas331332```python333# Good: Let Excel calculate the sum334sheet['B10'] = '=SUM(B2:B9)'335336# Good: Growth rate as Excel formula337sheet['C5'] = '=(C4-C2)/C2'338339# Good: Average using Excel function340sheet['D20'] = '=AVERAGE(D2:D19)'341```342343This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.344345## Common Workflow3463471. **Choose tool**: pandas for data, openpyxl for formulas/formatting3482. **Think and Plan**: Plan all sheets structure, formulas, cross-references before coding3493. **Create/Load**: Create new workbook or load existing file3504. **Modify**: Add/edit data, formulas, and formatting3515. **Save**: Write to file3526. **Recalculate formulas (MANDATORY IF USING FORMULAS)**: Use the recalc.py script353 ```bash354 python recalc.py output.xlsx355 ```3567. **Verify and fix any errors**:357 - The script returns JSON with error details358 - If `status` is `errors_found`, check `error_summary` for specific error types and locations359 - Fix the identified errors and recalculate again360 - Common errors to fix:361 - `#REF!`: Invalid cell references362 - `#DIV/0!`: Division by zero363 - `#NAME?`: Unrecognized formula name364 - **When writing to Excel, do not directly assign plain text that begins with “=” to a cell; otherwise, the system may misinterpret it as an invalid formula and trigger a `#NAME?` error.**365 - **For non-calculative descriptive text (such as legends), be sure to remove the leading equals sign before writing it in code, so it is correctly recognized as a regular string.**366 - `#VALUE!`: Wrong data type in formula367368### Creating new Excel files369370```python371# Using openpyxl for formulas and formatting372from openpyxl import Workbook373from openpyxl.styles import Font, PatternFill, Alignment374375wb = Workbook()376sheet = wb.active377378# Add data379sheet['A1'] = 'Hello'380sheet['B1'] = 'World'381sheet.append(['Row', 'of', 'data'])382383# Add formula384sheet['B2'] = '=SUM(A1:A10)'385386# Formatting387sheet['A1'].font = Font(bold=True, color='FF0000')388sheet['A1'].fill = PatternFill('solid', start_color='FFFF00')389sheet['A1'].alignment = Alignment(horizontal='center')390391# Column width392sheet.column_dimensions['A'].width = 20393394wb.save('output.xlsx')395```396397### Editing existing Excel files398399```python400# Using openpyxl to preserve formulas and formatting401from openpyxl import load_workbook402403# Load existing file404wb = load_workbook('existing.xlsx')405sheet = wb.active # or wb['SheetName'] for specific sheet406407# Working with multiple sheets408for sheet_name in wb.sheetnames:409 sheet = wb[sheet_name]410 print(f"Sheet: {sheet_name}")411412# Modify cells413sheet['A1'] = 'New Value'414sheet.insert_rows(2) # Insert row at position 2415sheet.delete_cols(3) # Delete column 3416417# Add new sheet418new_sheet = wb.create_sheet('NewSheet')419new_sheet['A1'] = 'Data'420421wb.save('modified.xlsx')422```423424## Recalculating formulas425426Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided `recalc.py` script to recalculate formulas:427428```bash429python recalc.py <excel_file> [timeout_seconds]430```431432Example:433434```bash435python recalc.py output.xlsx 30436```437438The script:439440- Automatically sets up LibreOffice macro on first run441- Recalculates all formulas in all sheets442- Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.)443- Returns JSON with detailed error locations and counts444- Works on both Linux and macOS445446## Formula Verification Checklist447448Quick checks to ensure formulas work correctly:449450### Essential Verification451452- [ ] **Test 2-3 sample references**: Verify they pull correct values before building full model453- [ ] **Column mapping**: Confirm Excel columns match (e.g., column 64 = BL, not BK)454- [ ] **Row offset**: Remember Excel rows are 1-indexed (DataFrame row 5 = Excel row 6)455456### Common Pitfalls457458- [ ] **NaN handling**: Check for null values with `pd.notna()`459- [ ] **Far-right columns**: FY data often in columns 50+460- [ ] **Multiple matches**: Search all occurrences, not just first461- [ ] **Division by zero**: Check denominators before using `/` in formulas (#DIV/0!)462- [ ] **Wrong references**: Verify all cell references point to intended cells (#REF!)463- [ ] **Cross-sheet references**: Use correct format (Sheet1!A1) for linking sheets464465### Formula Testing Strategy466467- [ ] **Start small**: Test formulas on 2-3 cells before applying broadly468- [ ] **Verify dependencies**: Check all cells referenced in formulas exist469- [ ] **Test edge cases**: Include zero, negative, and very large values470471### Interpreting recalc.py Output472473The script returns JSON with error details:474475```json476{477 "status": "success", // or "errors_found"478 "total_errors": 0, // Total error count479 "total_formulas": 42, // Number of formulas in file480 "error_summary": {481 // Only present if errors found482 "#REF!": {483 "count": 2,484 "locations": ["Sheet1!B5", "Sheet1!C10"]485 }486 }487}488```489490## Best Practices491492### Library Selection493494- **pandas**: Best for data analysis, bulk operations, and simple data export495- **openpyxl**: Best for complex formatting, formulas, and Excel-specific features496497### Working with openpyxl498499- Cell indices are 1-based (row=1, column=1 refers to cell A1)500- Use `data_only=True` to read calculated values: `load_workbook('file.xlsx', data_only=True)`501- **Warning**: If opened with `data_only=True` and saved, formulas are replaced with values and permanently lost502- For large files: Use `read_only=True` for reading or `write_only=True` for writing503- Formulas are preserved but not evaluated - use recalc.py to update values504505### Working with pandas506507- Specify data types to avoid inference issues: `pd.read_excel('file.xlsx', dtype={'id': str})`508- For large files, read specific columns: `pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])`509- Handle dates properly: `pd.read_excel('file.xlsx', parse_dates=['date_column'])`510511## Code Style Guidelines512513**IMPORTANT**: When generating Python code for Excel operations:514515- Write minimal, concise Python code without unnecessary comments516- Avoid verbose variable names and redundant operations517- Avoid unnecessary print statements518519**For Excel files themselves**:520521- Add comments to cells with complex formulas or important assumptions522- Document data sources for hardcoded values523- Include notes for key calculations and model sections