I completed a presentation; however no management has changed the company
info that is located along the page. How can I change the existing
presentation format and change everything to the new company Info without
cutting and pasting.

RE: Templates by vindys

vindys
Thu Mar 13 08:24:04 CDT 2008

Are you having the info in slides or in master? Which version of ppt do you
use?

If info is in slides, run this macro to replace all the text with old info

Sub ConvertSlideTexts()
Dim s1 As String
Dim s2 As String
s1 = "Earlier Company Info"
s2 = "Current Company Info"

For i = 1 To ActivePresentation.Slides.Count
With ActivePresentation.Slides(i)
For j = 1 To .Shapes.Count
With .Shapes(j)
If .HasTextFrame Then
.TextFrame.TextRange.Replace s1, s2
End If
End With
Next j
End With
Next i


End Sub


"Kevin" wrote:

> I completed a presentation; however no management has changed the company
> info that is located along the page. How can I change the existing
> presentation format and change everything to the new company Info without
> cutting and pasting.

Re: Templates by Echo

Echo
Thu Mar 13 15:40:43 CDT 2008

Probably View | Master | Slide Master, then change the info/graphics there.

--
Echo [MS PPT MVP] http://www.echosvoice.com
What's new in PPT 2007? http://www.echosvoice.com/2007.htm
Fixing PowerPoint Annoyances http://tinyurl.com/36grcd
PowerPoint 2007 Complete Makeover Kit http://tinyurl.com/32a7nx


"Kevin" <Kevin@discussions.microsoft.com> wrote in message
news:6DA8D092-F52C-4C42-A067-FCC70CB82786@microsoft.com...
>I completed a presentation; however no management has changed the company
> info that is located along the page. How can I change the existing
> presentation format and change everything to the new company Info without
> cutting and pasting.