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.222324# Requirements for Outputs2526## All Excel files2728## Critical Instruction Protocols2930### Query Decomposition & Verification31Before generating any code, strictly analyze the user's prompt.32- **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.33- **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.34- **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.353637### Zero Formula Errors38- Every Excel model MUST be delivered with ZERO formula errors (#REF!, #DIV/0!, #VALUE!, #N/A, #NAME?)3940### Preserve Existing Templates (when updating templates)41- Study and EXACTLY match existing format, style, and conventions when modifying files42- Never impose standardized formatting on files with established patterns43- Existing template conventions ALWAYS override these guidelines444546## Financial models4748### Color Coding Standards49Unless otherwise stated by the user or existing template5051#### Industry-Standard Color Conventions52- **Blue text (RGB: 0,0,255)**: Hardcoded inputs, and numbers users will change for scenarios53- **Black text (RGB: 0,0,0)**: ALL formulas and calculations54- **Green text (RGB: 0,128,0)**: Links pulling from other worksheets within same workbook55- **Red text (RGB: 255,0,0)**: External links to other files56- **Yellow background (RGB: 255,255,0)**: Key assumptions needing attention or cells that need to be updated5758### Number Formatting Standards5960#### Required Format Rules61- **Years**: Format as text strings (e.g., "2024" not "2,024")62- **Currency**: Use $#,##0 format; ALWAYS specify units in headers ("Revenue ($mm)")63- **Zeros**: Use number formatting to make all zeros "-", including percentages (e.g., "$#,##0;($#,##0);-")64- **Percentages**: Default to 0.0% format (one decimal)65- **Multiples**: Format as 0.0x for valuation multiples (EV/EBITDA, P/E)66- **Negative numbers**: Use parentheses (123) not minus -1236768### Formula Construction Rules6970#### Assumptions Placement71- Place ALL assumptions (growth rates, margins, multiples, etc.) in separate assumption cells72- Use cell references instead of hardcoded values in formulas73- Example: Use =B5*(1+$B$6) instead of =B5*1.057475#### Formula Error Prevention76- Verify all cell references are correct77- Check for off-by-one errors in ranges78- Ensure consistent formulas across all projection periods79- Test with edge cases (zero values, negative numbers)80- Verify no unintended circular references8182#### Documentation Requirements for Hardcodes83- Comment or in cells beside (if end of table). Format: "Source: [System/Document], [Date], [Specific Reference], [URL if applicable]"84- Examples:85 - "Source: Company 10-K, FY2024, Page 45, Revenue Note, [SEC EDGAR URL]"86 - "Source: Company 10-Q, Q2 2025, Exhibit 99.1, [SEC EDGAR URL]"87 - "Source: Bloomberg Terminal, 8/15/2025, AAPL US Equity"88 - "Source: FactSet, 8/20/2025, Consensus Estimates Screen"899091## Style Rules9293Implement all styling directly using the `python-openpyxl` library. The following standards define the visual architecture of the spreadsheets.9495### Global Layout & Design Principles96**Layout & Dimensions**97- **Canvas Origin**: Content MUST start at cell **B2** to provide a top-left padding margin. Do not start at A1.98- **Cell Sizing**: Optimize column widths and row heights for data readability. Avoid unscaled cells (e.g., narrow columns with excessive height).99- **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).100 101**Visual Hierarchy**102- **Professionalism**: Prioritize business-appropriate color schemes. Avoid decorative elements that distract from data.103- **Consistency**: Apply uniform fonts, borders, and colors to similar data types across the workbook.104- **White Space**: Maintain adequate margins to prevent visual crowding.105- **Alternating Row Fill**: When the data area of the table exceeds three rows, alternating row fills (white and gray) are applied by default.106- 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.107108109### Font Standards (MUST FOLLOW)110- **English Text**: Always use **Times New Roman** as the default font111112```python113# Font configuration example114from openpyxl.styles import Font115116# English content117english_font = Font(name='Times New Roman', size=11)118119```120121122### Title Formatting Rules (MUST FOLLOW)123- **NO Background Shading**: Titles must NOT have any background fill/shading (PatternFill)124- **Left Alignment**: All titles must be left-aligned, NOT centered125- **Bold Text**: Use bold font weight to distinguish titles instead of background colors126127```python128# ✅ CORRECT Title Style129130from openpyxl.styles import Font, Alignment131from openpyxl import Workbook132133# Load existing file134wb = Workbook()135sheet = wb.active136137title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")138title_alignment = Alignment(horizontal='left', vertical='center')139140sheet['B2'] = "Report Title"141sheet['B2'].font = title_font142sheet['B2'].alignment = title_alignment143# NO fill applied - title has no background shading144145# ❌ WRONG - Do NOT use background shading on titles146# title_fill = PatternFill(start_color="333333", fill_type="solid") # FORBIDDEN147# sheet['B2'].fill = title_fill # FORBIDDEN148```149150151152### Visual Themes153#### 1. Default Style154**Use for:** All non-financial tasks (General data, project management, inventories).155156**Color Palette Constraints**157- **Base Colors**: White (#FFFFFF), Black (#000000), and Grey scales ONLY.158- **Accent Color**: **Blue** (varying saturation) is the ONLY allowed accent color for highlighting or differentiation.159- **Restrictions**: 160 - ❌ NO Green, Red, Orange, Purple, Yellow, or Pink.161 - ❌ NO Gradients or Rainbow schemes.162163```python164# Palette165from openpyxl.styles import Alignment, Border, Font, Side, PatternFill, 166167# Base & Accents168background_white = "FFFFFF" # background169background_row_alt = "E9E9E9" # Alternating row fill170grey_header = "333333" # Section headers171border_grey = "E3DEDE" # Standard borders172blue_primary = "0B5CAD" # Primary Accent173174# Application Example: Data Headers (NOT Titles)175header_fill = PatternFill(start_color=grey_header, end_color=grey_header, fill_type="solid")176header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)177178for cell in sheet['B3:E3'][0]:179 cell.fill = header_fill180 cell.font = header_font181182# Example: Title style (NO shading, left-aligned)183title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")184title_alignment = Alignment(horizontal='left', vertical='center')185sheet['B2'].font = title_font186sheet['B2'].alignment = title_alignment187# NO fill for titles188```189190#### 2. Professional Finance Style191**Use for:** Financial, fiscal, and market analysis (Stock data, GDP, Budgets, P&L, ROI).192193**Market Data Color Convention (Critical)**194Apply the following color logic based on the target region:195196| Region | Price Up / Positive | Price Down / Negative |197| --- | --- | --- |198| **China (Mainland)** | **Red** | **Green** |199| **International** | **Green** | **Red** |200201```python202# Professional Finance Palette203from openpyxl.styles import PatternFill, Font204205text_dark = "000000"206background_light = "E6E8EB"207header_fill_blue = "1B3F66"208metrics_highlight_warm = "F5E6D3"209negative_red = "FF0000"210211212# Data Headers Example213pfs_header_fill = PatternFill(start_color=header_fill_blue, end_color=header_fill_blue, fill_type="solid")214pfs_header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)215216for cell in sheet['B3:E3'][0]:217 cell.fill = pfs_header_fill218 cell.font = pfs_header_font219220221# Default font - Times New Roman for English222default_font = Font(name='Times New Roman', size=11, color=text_dark)223224# Example: Title style (NO shading, left-aligned)225# NO fill for titles226title_font = Font(name='Times New Roman', size=18, bold=True, color="000000")227title_alignment = Alignment(horizontal='left', vertical='center')228sheet['B2'].font = title_font229sheet['B2'].alignment = title_alignment230231# Example: Apply header style (for data headers, NOT titles)232header_fill = PatternFill(start_color=grey_header, end_color=grey_header, fill_type="solid")233header_font = Font(name='Times New Roman', color="FFFFFF", bold=True)234for cell in sheet['B3:E3'][0]: # Data headers, not title row235 cell.fill = header_fill236 cell.font = header_font237```238239### Content Color Conventions240Apply specific font colors to indicate data source and functionality (consistent with Financial Model requirements):241242- **Blue Font**: Hardcoded inputs and fixed values.243- **Black Font**: Calculated results and formulas.244- **Green Font**: References to other worksheets within the same file.245- **Red Font**: References to external files or sources.246247248## Chart Creation Notes249250### 1. Data Source Must Contain “Actual Values”251252* Excel formulas written via **openpyxl** are not automatically calculated, which can cause charts to appear blank because no cached values are available.253* You can use `recalc.py` to calculate the values so that charts reference computed results.254* Finally, use `recalc.py` again to perform a validation check.255256### 2. Reference Range Must Match Title Settings257258* When `titles_from_data=True` is set, **the first row of the reference range must contain text headers**.259 If this row is empty or contains numeric data, it may result in incorrect series names or data misalignment.260* Ensure that the chart’s reference range starts from the data rows and does not incorrectly include title rows.261262### 3. Impact of “Visibility” on Chart Data263264* By default, Excel charts do not plot data from hidden rows or columns (auxiliary tables are often hidden).265 You must **explicitly disable the “plot visible cells only” option**, otherwise the chart will appear blank.266267```python268# After hiding auxiliary data rows, for each chart object,269# set plot_visible_only to False. This line is required.270chart.plot_visible_only = False271```272273274# Workflows275276## Reading and analyzing data277278### Data analysis with pandas279For data analysis, visualization, and basic operations, use **pandas** which provides powerful data manipulation capabilities:280281```python282import pandas as pd283284# Read Excel285df = pd.read_excel('file.xlsx') # Default: first sheet286all_sheets = pd.read_excel('file.xlsx', sheet_name=None) # All sheets as dict287288# Analyze289df.head() # Preview data290df.info() # Column info291df.describe() # Statistics292293# Write Excel294df.to_excel('output.xlsx', index=False)295```296297## Excel File Workflows298299## CRITICAL: Use Formulas, Not Hardcoded Values300301**Always use Excel formulas instead of calculating values in Python and hardcoding them.** This ensures the spreadsheet remains dynamic and updateable.302303### ❌ WRONG - Hardcoding Calculated Values304```python305# Bad: Calculating in Python and hardcoding result306total = df['Sales'].sum()307sheet['B10'] = total # Hardcodes 5000308309# Bad: Computing growth rate in Python310growth = (df.iloc[-1]['Revenue'] - df.iloc[0]['Revenue']) / df.iloc[0]['Revenue']311sheet['C5'] = growth # Hardcodes 0.15312313# Bad: Python calculation for average314avg = sum(values) / len(values)315sheet['D20'] = avg # Hardcodes 42.5316```317318### ✅ CORRECT - Using Excel Formulas319```python320# Good: Let Excel calculate the sum321sheet['B10'] = '=SUM(B2:B9)'322323# Good: Growth rate as Excel formula324sheet['C5'] = '=(C4-C2)/C2'325326# Good: Average using Excel function327sheet['D20'] = '=AVERAGE(D2:D19)'328```329330This applies to ALL calculations - totals, percentages, ratios, differences, etc. The spreadsheet should be able to recalculate when source data changes.331332## Common Workflow3331. **Choose tool**: pandas for data, openpyxl for formulas/formatting3342. **Think and Plan**: Plan all sheets structure, formulas, cross-references before coding3353. **Create/Load**: Create new workbook or load existing file3364. **Modify**: Add/edit data, formulas, and formatting3375. **Save**: Write to file3386. **Recalculate formulas (MANDATORY IF USING FORMULAS)**: Use the recalc.py script339 ```bash340 python recalc.py output.xlsx341 ```3427. **Verify and fix any errors**: 343 - The script returns JSON with error details344 - If `status` is `errors_found`, check `error_summary` for specific error types and locations345 - Fix the identified errors and recalculate again346 - Common errors to fix:347 - `#REF!`: Invalid cell references348 - `#DIV/0!`: Division by zero349 - `#NAME?`: Unrecognized formula name350 - **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.**351 - **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.**352 - `#VALUE!`: Wrong data type in formula353 354355### Creating new Excel files356357```python358# Using openpyxl for formulas and formatting359from openpyxl import Workbook360from openpyxl.styles import Font, PatternFill, Alignment361362wb = Workbook()363sheet = wb.active364365# Add data366sheet['A1'] = 'Hello'367sheet['B1'] = 'World'368sheet.append(['Row', 'of', 'data'])369370# Add formula371sheet['B2'] = '=SUM(A1:A10)'372373# Formatting374sheet['A1'].font = Font(bold=True, color='FF0000')375sheet['A1'].fill = PatternFill('solid', start_color='FFFF00')376sheet['A1'].alignment = Alignment(horizontal='center')377378# Column width379sheet.column_dimensions['A'].width = 20380381wb.save('output.xlsx')382```383384### Editing existing Excel files385386```python387# Using openpyxl to preserve formulas and formatting388from openpyxl import load_workbook389390# Load existing file391wb = load_workbook('existing.xlsx')392sheet = wb.active # or wb['SheetName'] for specific sheet393394# Working with multiple sheets395for sheet_name in wb.sheetnames:396 sheet = wb[sheet_name]397 print(f"Sheet: {sheet_name}")398399# Modify cells400sheet['A1'] = 'New Value'401sheet.insert_rows(2) # Insert row at position 2402sheet.delete_cols(3) # Delete column 3403404# Add new sheet405new_sheet = wb.create_sheet('NewSheet')406new_sheet['A1'] = 'Data'407408wb.save('modified.xlsx')409```410411## Recalculating formulas412413Excel files created or modified by openpyxl contain formulas as strings but not calculated values. Use the provided `recalc.py` script to recalculate formulas:414415```bash416python recalc.py <excel_file> [timeout_seconds]417```418419Example:420```bash421python recalc.py output.xlsx 30422```423424The script:425- Automatically sets up LibreOffice macro on first run426- Recalculates all formulas in all sheets427- Scans ALL cells for Excel errors (#REF!, #DIV/0!, etc.)428- Returns JSON with detailed error locations and counts429- Works on both Linux and macOS430431## Formula Verification Checklist432433Quick checks to ensure formulas work correctly:434435### Essential Verification436- [ ] **Test 2-3 sample references**: Verify they pull correct values before building full model437- [ ] **Column mapping**: Confirm Excel columns match (e.g., column 64 = BL, not BK)438- [ ] **Row offset**: Remember Excel rows are 1-indexed (DataFrame row 5 = Excel row 6)439440### Common Pitfalls441- [ ] **NaN handling**: Check for null values with `pd.notna()`442- [ ] **Far-right columns**: FY data often in columns 50+ 443- [ ] **Multiple matches**: Search all occurrences, not just first444- [ ] **Division by zero**: Check denominators before using `/` in formulas (#DIV/0!)445- [ ] **Wrong references**: Verify all cell references point to intended cells (#REF!)446- [ ] **Cross-sheet references**: Use correct format (Sheet1!A1) for linking sheets447448### Formula Testing Strategy449- [ ] **Start small**: Test formulas on 2-3 cells before applying broadly450- [ ] **Verify dependencies**: Check all cells referenced in formulas exist451- [ ] **Test edge cases**: Include zero, negative, and very large values452453### Interpreting recalc.py Output454The script returns JSON with error details:455```json456{457 "status": "success", // or "errors_found"458 "total_errors": 0, // Total error count459 "total_formulas": 42, // Number of formulas in file460 "error_summary": { // Only present if errors found461 "#REF!": {462 "count": 2,463 "locations": ["Sheet1!B5", "Sheet1!C10"]464 }465 }466}467```468469## Best Practices470471### Library Selection472- **pandas**: Best for data analysis, bulk operations, and simple data export473- **openpyxl**: Best for complex formatting, formulas, and Excel-specific features474475### Working with openpyxl476- Cell indices are 1-based (row=1, column=1 refers to cell A1)477- Use `data_only=True` to read calculated values: `load_workbook('file.xlsx', data_only=True)`478- **Warning**: If opened with `data_only=True` and saved, formulas are replaced with values and permanently lost479- For large files: Use `read_only=True` for reading or `write_only=True` for writing480- Formulas are preserved but not evaluated - use recalc.py to update values481482### Working with pandas483- Specify data types to avoid inference issues: `pd.read_excel('file.xlsx', dtype={'id': str})`484- For large files, read specific columns: `pd.read_excel('file.xlsx', usecols=['A', 'C', 'E'])`485- Handle dates properly: `pd.read_excel('file.xlsx', parse_dates=['date_column'])`486487## Code Style Guidelines488**IMPORTANT**: When generating Python code for Excel operations:489- Write minimal, concise Python code without unnecessary comments490- Avoid verbose variable names and redundant operations491- Avoid unnecessary print statements492493**For Excel files themselves**:494- Add comments to cells with complex formulas or important assumptions495- Document data sources for hardcoded values496- Include notes for key calculations and model sections