пытается обновить источник данных в существующей сводной таблице - PullRequest
1 голос
/ 26 февраля 2020

Вот фрагмент кода, в котором я пытаюсь изменить источник данных в существующей сводной таблице, у меня есть две сводные таблицы в обеих. Я хочу обновить исходные данные

 excel_app = win32com.client.dynamic.Dispatch("Excel.Application")
    excel_app.Interactive = False
    excel_app.Visible = False
    excel_app.DisplayAlerts = False
    xlBook = excel_app.Workbooks.Open(r'C:\Users\70.P\De\E_Python_Script\Sc_ext.xlsx')
    ws = xlBook.Worksheets['Sheet2']
    ws.Unprotect()  # IF protected
    pivotCount = ws.PivotTables().Count
    print("pivot count is",pivotCount)

    for j in range(1, pivotCount + 1):
        ws.PivotTables(j).PivotCaches.Create(SourceType=xlDatabase, SourceData="C:\Users\70.P\Desktop\E_Python_Script[Sc_ext.xlsx]Sheet1!$A$1:$AC$4601", Version=xlPivotTableVersion14)

    # Put protection back on
    #ws.Protect(DrawingObjects=True, Contents=True, Scenarios=True, AllowUsingPivotTables=True)
    xlBook.Close(SaveChanges=1)

    del xlBook

    excel_app.Quit()
    del excel_app
...