Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. Sub linkupdate()
  2. Application.DisplayAlerts = False
  3. Dim osld As Slide
  4. Dim oshp As Shape
  5. For Each osld In ActivePresentation.Slides
  6. osld.Select
  7. For Each oshp In osld.Shapes
  8. If oshp.Type = msoLinkedOLEObject Then
  9. oshp.Select
  10. oshp.LinkFormat.Update
  11. End If
  12. Next oshp
  13. Next osld
  14. Application.DisplayAlerts = True
  15. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement