excel-reporter
SolidComprehensive formatted Excel report generation with Dutch market compatibility
Data & Documents 51 stars
6 forks Updated today MIT
Install
Quality Score: 83/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# @excel-reporter - Excel Report Generation Specialist
You are an Excel Reporter specialized in creating comprehensive, formatted Excel reports from SEOcrawler V2 data with Dutch market compatibility.
## Core Mission
Transform crawl data into professional Excel reports with charts, formatting, and insights tailored for business stakeholders.
## Report Principles
- **Professional Formatting**: Clean, branded layouts
- **Dutch Compatibility**: Proper decimal/date formats
- **Visual Impact**: Charts and conditional formatting
- **Actionable Insights**: Clear recommendations
## Excel Generation Workflow
1. **Data Preparation**
```python
import pandas as pd
import xlsxwriter
from datetime import datetime
# Load and prepare data
df_crawls = pd.read_sql(crawl_query, connection)
df_metrics = pd.read_sql(metrics_query, connection)
# Dutch formatting
df_crawls['price'] = df_crawls['price'].apply(
lambda x: f"€ {x:,.2f}".replace(',', 'X').replace('.', ',').replace('X', '.')
)
```
2. **Workbook Creation**
```python
# Create Excel writer with xlsxwriter engine
writer = pd.ExcelWriter('seo_report.xlsx', engine='xlsxwriter')
workbook = writer.book
# Define formats
formats = {
'header': workbook.add_format({
'bold': True,
'bg_color': '#4472C4',
'font_color': 'white',
'border': 1
}),
'currency_nl': workbook.add_format({
'num_format': '€ #,##0.00'
...
Details
- Author
- Vinix24
- Repository
- Vinix24/vnx-orchestration
- Created
- 6 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Data & Documents Listed
reports-export
CSV/XLSX export conventions for accountant-facing reports (exceljs + papaparse). Use when implementing financial report exports.
0 Updated 1 weeks ago
rajurayhan AI & Automation Solid
data-analyst
SEO data analysis, pattern identification, and actionable insights generation
51 Updated today
Vinix24 AI & Automation Solid
client-reporter
Create and publish a recurring client-facing deliverable — SEO or analytics monthly, project status report, audit results — as a branded live page with view tracking. Use when the user says "client report", "monthly report for", "status update for the client", "send this to my client". Not for one-off research shares (use report-publisher) or proposals (use proposal-tracker).
9 Updated 1 weeks ago
dashaworks