使用格式化功能用xlwings命名表

时间:2019-09-16 11:42:44

标签: python xlwings

尝试使用表名在excel中填充我的输出,但似乎做不正确。 Excel能够提取表的名称,但不会被检测为“表”,而是会被检测为“名称”

sheet.range('A' + str(offset)).value = title
sheet.range('A' + str(offset)).api.Font.Bold = True
sheet.range('A' + str(offset)).api.Font.Size = 12
sheet.range('A' + str(offset + 1)).options(index=False, header=True).value = pivottable
sheet.range('A' + str(offset + 1)).expand('right').api.Font.Bold = True
sheet.range('A' + str(offset + 1)).expand('right').api.Font.Size = 10
sheet.range('A' + str(offset + 1)).expand().color = (226, 240, 250)
sheet.range('A' + str(offset + 2)).expand().api.Font.Size = 8
  

sheet.range('A'+ str(offset + 1))。expand()。name = rangename

0 个答案:

没有答案