top-value-coloring

Merge multi-sheet Excel data, select top-N metrics, and export styled XLSX reports.

2|Updated May 19, 2026
One-click install
npx skills add https://github.com/aiyinluya/SenseNova-Skills-Studio --skill top-value-coloring-aiyinluya
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: top-value-coloring
Source: https://github.com/aiyinluya/SenseNova-Skills-Studio/tree/main/skills/sn-da-excel-workflow/capability/excel-cell-coloring/top-value-coloring
Command: npx skills add https://github.com/aiyinluya/SenseNova-Skills-Studio --skill top-value-coloring-aiyinluya

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pandas, openpyxl.

What problem does it solve?

It solves the problem of manually scanning multi-sheet Excel data to find top-N key metrics and then formatting the results for reporting, which is slow and error-prone.

Core Features & Use Cases

  • Multi-Sheet Merge & Cleanup: Extract key columns from multiple sheets, handle missing merged cells via forward fill, convert values to numeric, and filter out invalid rows.
  • Top-N Selection for Key Indicators: Compute ranked results (e.g., Top 5) to surface the most important group/value combinations.
  • Automated Excel Styling with openpyxl: Apply header styling, cell borders and alignment, and conditional emphasis such as red fonts for specific columns and optional green fills for maxima/threshold logic, then export a ready-to-share XLSX.

Quick Start

Use the top-value-coloring skill to merge the relevant columns from your attached Excel sheets, select the Top-N records, style the ranking table with openpyxl, and generate a formatted downloadable workbook named analysis_report.xlsx.

Frequently Asked Questions about top-value-coloring

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I extract and rank top-N values from multiple Excel sheets into a single report?

To extract top-N values from multiple Excel sheets, you can use pandas to merge relevant columns, handle missing merged cells via forward fill, filter invalid rows, and compute ranked results before exporting a styled workbook.

How do I automatically format and style a ranked data table when exporting to Excel?

You can automatically format a ranked Excel table using openpyxl to apply header styling, cell borders, alignment, number formats, and conditional emphasis like red fonts or green fills for maximum values.

Can I merge data across multiple Excel sheets and handle missing merged cells before ranking?

Yes, you can merge data across multiple Excel sheets using pandas to extract key columns and apply forward fill to handle missing merged cells, ensuring clean numeric data before computing top-N rankings.

What is the best way to automate Top-N selection and Excel styling for dashboard reporting?

The best way to automate Top-N selection for dashboard reporting is combining pandas for numeric coercion and ranking with openpyxl for automated Excel styling, producing a ready-to-share formatted XLSX deliverable.

Does openpyxl support conditional formatting like red fonts and green fills for exported Excel reports?

Yes, openpyxl supports conditional emphasis for exported Excel reports, allowing you to apply specific styling such as red fonts for designated columns and optional green fills for maxima or threshold logic.

How do I clean multi-sheet Excel data and convert values to numeric before filtering top records?

You can clean multi-sheet Excel data using pandas to extract key columns, apply forward fill for merged cells, coerce values to numeric formats, and filter out invalid rows before selecting your top-N records.