Agent skill
openpyxl-common-issues
Sub-skill of openpyxl: Common Issues.
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/data/office/openpyxl/common-issues
SKILL.md
Common Issues
Common Issues
1. Formula Not Calculating
# Problem: Formulas show as text, not calculated
# Solution: Ensure proper formula format
# DO: Use equals sign and proper cell references
ws['A1'] = '=SUM(B1:B10)'
# DON'T: Use string that looks like formula
# ws['A1'] = 'SUM(B1:B10)' # Missing =
# Note: Formulas are calculated when Excel opens the file
2. Large File Performance
# Problem: Memory error with large files
# Solution: Use streaming modes
# For writing
wb = Workbook(write_only=True)
# For reading
wb = load_workbook('file.xlsx', read_only=True, data_only=True)
3. Style Not Appearing
# Problem: Styles don't appear in Excel
# Solution: Ensure style is properly applied
# DO: Apply fill with fill_type
fill = PatternFill(start_color="FF0000", fill_type="solid")
# DON'T: Missing fill_type
# fill = PatternFill(start_color="FF0000") # Won't show
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?