View Single Post
 
Old 01-12-2018, 09:54 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2016
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,913
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

If you mean select multiple slides and then PASTE that has never been possible.

You can move through slides quickly by pressing PageDown > CTRL V > Page Down etc

If you have already copied a shape you can use code to paste it to all of the selected slides.

Code:
Sub paster()
On Error Resume Next
Dim osld As Slide
For Each osld In ActiveWindow.Selection.SlideRange
ActiveWindow.View.GotoSlide (osld.SlideIndex)
osld.Shapes.Paste
Next
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials

Last edited by JohnWilson; 01-12-2018 at 12:04 PM.
Reply With Quote