我正在构建一个python脚本,允许我打开Excel 2010工作表并将其打印出来.
我得到了大部分的方式
import win32com.client
office = win32com.client.Dispatch("Excel.Application")
wb = office.Workbooks.Open(r"path\to\excel\file\to\print.xlsm")
count = wb.Sheets.Count
for i in range(count):
ws = wb.Worksheets[i]
pivotCount = ws.PivotTables().Count
for j in range(1, pivotCount+1):
#TODO code to refresh each pivot table
ws.PrintOut()
print "Worksheet: %s - has been sent to the printer" % (ws.Name)
正如您所看到的,我仍然缺少工作表中数据透视表的刷新.
用于刷新的VBA代码是:
ActiveSheet.PivotTables(1).PivotCache.Refresh
我似乎无法将代码分解为python win32com语法.我得到的最接近的是:
wb.WorkSheets(5).PivotTables(1).PivotCache.Refresh
它给出<绑定方法CDispatch.Refresh< COMObject PivotCache>>但没有结果在工作表中.
任何帮助将非常感谢!
解
我自己最终找到了解决方案,但是要保留帖子,以便它可以帮助所有类似问题的程序员.
import win32com.client
office = win32com.client.Dispatch("Excel.Application")
wb = office.Workbooks.Open(r"path\to\excel\file\to\print.xlsm")
count = wb.Sheets.Count
for i in range(count):
ws = wb.Worksheets[i]
ws.Unprotect() # IF protected
pivotCount = ws.PivotTables().Count
for j in range(1, pivotCount+1):
ws.PivotTables(j).PivotCache().Refresh()
# Put protection back on
ws.Protect(DrawingObjects=True, Contents=True, Scenarios=True, AllowUsingPivotTables=True)
ws.PrintOut()
print "Worksheet: %s - has been sent to the printer" % (ws.Name)
如果您喜欢或使用该代码,请不要忘记投票.
解决方法:
我发现了我的问题.我在工作表上得到了保护……傻傻的我..