我正在尝试使用python创建一个自动的excel报告,其中包括标题,报告的详细信息和摘要表。
我面临的问题是将摘要表粘贴到我使用Python创建的Excel报表中的特定单元格位置。
header = [{'header': di} for di in dfI_new.columns.tolist()]
WS_I.add_table(9, 0, dfI_new.shape[0], dfI_new.shape[1]-1, {'data':
dfI_new.values.tolist(), 'header_row': True,'first_column':
False,'columns':header})
workbook.close()
预期结果
A10:G13
范围内实际结果
A3:G10
范围内的