无法使用xlsxwriter.utility.xl_range()将表格粘贴到Excel文件中所需的单元格位置

时间:2019-07-14 07:29:18

标签: excel pandas xlsxwriter

我正在尝试使用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范围内的

0 个答案:

没有答案