working-with-spreadsheets
Installation
SKILL.md
Working with Spreadsheets
Quick Start
from openpyxl import Workbook
wb = Workbook()
sheet = wb.active
sheet['A1'] = 'Revenue'
sheet['B1'] = 1000
sheet['B2'] = '=B1*1.1' # Use formulas, not hardcoded values!
wb.save('output.xlsx')
Critical Rule: Use Formulas, Not Hardcoded Values
Always use Excel formulas instead of calculating in Python.
Related skills