Hi there,
I have a excel wbook with several graphs that i exported to PPoint.
I know how to update the graphs data in PPoint one by one.
Is there any way to updtade all of the graphs at the same time?
I have this code i'm using to do the exact same thing in excel, but i never used VBA code in PP.
Sub Rectânguloarredondado14_Clique()
desproteger
Dim iP As Integer
Application.DisplayAlerts = False
For iP = 1 To ActiveSheet.PivotTables.Count
ActiveSheet.PivotTables(iP).RefreshTable
Next
Application.DisplayAlerts = True
proteger
End Sub
Can anyone help, please? Thanks
Bookmarks