PPtx Macros that work Flashcards
1
Q
C&P locate and remove the graphic that is causing inconsistencies/ background
——————————->
A
Sub RemoveGraphics()
Dim slide As slide
Dim shape As shape
For Each slide In ActivePresentation.Slides
For Each shape In slide.Shapes
If shape.Type = msoPicture Then
shape.Delete
End If
Next shape
Next slide
End Sub