View Single Post
 
Old 11-22-2012, 03:54 AM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

This is only possible if you can code or know a coder.

Sample code
Code:
Sub copyTitles()
Dim oshp As Shape
Dim osld As Slide
Dim strtext As String
If ActivePresentation.Slides(1).Shapes.HasTitle Then _
strtext = ActivePresentation.Slides(1).Shapes.Title.TextFrame.TextRange
For Each osld In ActivePresentation.Slides
If osld.Shapes.HasTitle Then osld.Shapes.Title.TextFrame.TextRange.Text = strtext
Next
End Sub

see www.pptalchemy.co.uk/vba.html for how to use code
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote