| name | large-excel-analysis-and-formatting |
| description | 用于处理多Sheet大型Excel文件,支持大文件Parquet格式转换提速,并使用openpyxl生成带条件高亮和自定义样式的格式化Excel报告及下载链接。 |
Skill Steps
Step1 读取Excel文件,统计所有Sheet的总行数。若数据量过大(如≥1万行),则转换为Parquet格式以显著提升后续读取和分析效率。
import pandas as pd
file_path = "input.xlsx"
xls = pd.ExcelFile(file_path)
total_rows = 0
for name in xls.sheet_names:
df_temp = pd.read_excel(file_path, sheet_name=name, header=None)
total_rows += len(df_temp)
print(f"总行数: {total_rows}")
if total_rows >= 10000:
parquet_path = "/mnt/data/temp.parquet"
df = pd.read_excel(file_path, sheet_name=0)
df.to_parquet(engine='pyarrow', path=parquet_path)
df = pd.read_parquet(parquet_path)
else:
df = pd.read_excel(file_path, sheet_name=0)
Step2 提取目标数据进行分组汇总分析,并识别出最大值及其对应的分类项。
group_col = '分类列名'
target_col = '目标数值列'
summary = df.groupby(group_col)[target_col].sum().reset_index()
max_idx = summary[target_col].idxmax()
max_type = summary.loc[max_idx, group_col]
print(f"最高产值类型: {max_type}")
Step3 使用 openpyxl 将分析结果写入新的Excel文件,配置表头样式、边框、列宽,并对满足特定条件(如最大值)的行进行绿色高亮标注,最后生成下载链接。
from openpyxl import Workbook
from openpyxl.styles import PatternFill, Font, Alignment, Border, Side
wb = Workbook()
ws = wb.active
ws.title = "分析报告"
header_fill = PatternFill(start_color="4472C4", end_color="4472C4", fill_type="solid")
header_font = Font(name="微软雅黑", bold=True, color="FFFFFF", size=12)
highlight_fill = PatternFill(start_color="00B050", end_color="00B050", fill_type="solid")
highlight_font = Font(name="微软雅黑", bold=True, color="FFFFFF", size=12)
normal_font = Font(name="微软雅黑", size=11)
center_align = Alignment(horizontal="center", vertical="center")
thin_border = Border(
left=Side(style="thin"), right=Side(style="thin"),
top=Side(style="thin"), bottom=Side(style="thin")
)
headers = [group_col, target_col]
for col, header in enumerate(headers, 1):
cell = ws.cell(row=1, column=col, value=header)
cell.fill = header_fill
cell.font = header_font
cell.alignment = center_align
cell.border = thin_border
for row_idx, row_data in enumerate(summary.itertuples(index=False), 2):
type_name, value = row_data[0], row_data[1]
cell_type = ws.cell(row=row_idx, column=, value=type_name)
cell_value = ws.cell(row=row_idx, column=, value=value)
cell [cell_type, cell_value]:
cell.alignment = center_align
cell.border = thin_border
cell.font = normal_font
type_name == max_type:
cell_type.fill = highlight_fill
cell_type.font = highlight_font
cell_value.fill = highlight_fill
cell_value.font = highlight_font
ws.column_dimensions[].width =
ws.column_dimensions[].width =
output_path =
wb.save(output_path)
()
download_link =
()