Footer Problem

P

Phil U.

I am using Powerpoint 2003 and I am having a problem removing a footer from a
slide template. I have removed all options from master slide view and header
and footer view but this information still appears when the slides are
printed.

Does anyone have any ideas?

Thanks!
 
E

Echo S

Phil said:
I am using Powerpoint 2003 and I am having a problem removing a
footer from a slide template. I have removed all options from master
slide view and header and footer view but this information still
appears when the slides are printed.

Is the footer in question on the slide itself, or is it on the page (like
when you print handouts)?

Do you have more than one pair of master slides (slide and title slide)?
 
B

Bill Dilworth

This macro will remove the footer from all slides.

-------Start Code---------
Sub DrSholls()
Dim oSl As Slide
For Each oSl In ActivePresentation.Slides
oSl.HeadersFooters.Footer.Visible = msoFalse
Next osld
End Sub
-------Start Code---------

**How do I use VBA code in PowerPoint?
http://www.rdpslides.com/pptfaq/FAQ00033.htm



--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
yahoo2@ Please read the PowerPoint
yahoo. FAQ pages. They answer most
com of our questions.
www.pptfaq.com
..
..
 
Top