用python,读取excel“data\\123.xlsx”文件,遍历其所有sheet表,遍历读取excel的sheet表中的数据data,对data做遍历循环,data数据中的第一行表头有一个合并单元格表头“推送内容”,查询到这个表头最左列是哪一列,再对data数据的最后加一列,表头为“合并内容”,写入excel函数公式concat函数(开始列为合并表头"推送内容"的开头列,结束列为合并表头"推送内容"的开头列),继续下一行遍历,最后生成的最后data,写入到excel文件,并保存
时间: 2024-03-13 09:47:09 浏览: 150
好的,以下是Python代码实现:
```python
import openpyxl
from openpyxl.utils import column_index_from_string
from openpyxl.utils.cell import coordinate_from_string
from openpyxl.formula import Tokenizer, Token
# 读取Excel文件
wb = openpyxl.load_workbook('data\\123.xlsx')
# 遍历每一个sheet表
for sheet_name in wb.sheetnames:
ws = wb[sheet_name]
# 找到合并表头"推送内容"所在的列
merge_cell = ws.merged_cells.ranges[0]
merge_range = coordinate_from_string(str(merge_cell))
start_col = column_index_from_string(merge_range[0])
# 遍历每一行数据
for row in ws.iter_rows(min_row=1, values_only=True):
# 在最后加入新列"合并内容"
row = list(row)
row.append(None)
# 构造公式并写入新列
formula = "=CONCAT("
for col in range(start_col, start_col + merge_cell.size // merge_cell.rows):
col_letter = openpyxl.utils.get_column_letter(col)
formula += col_letter + str(ws.max_row) + ","
formula = formula[:-1] + ")"
ws.cell(row=ws.max_row, column=ws.max_column, value=formula)
# 将修改后的行数据写回到Excel文件
ws.append(row)
# 保存Excel文件
wb.save('data\\123_new.xlsx')
```
请将代码中的Excel文件路径修改为你自己的文件路径。此代码会对每一个sheet表进行遍历,找到合并表头"推送内容"所在的列,然后遍历每一行数据,在最后加入新列"合并内容",并构造公式写入新列。最后将修改后的数据写回到Excel文件,并保存为新的文件。
阅读全文