Printing File Names

  • Thread starter Thread starter Ravi
  • Start date Start date
R

Ravi

Hello,

Is there a option in Powerpoint just like Excel to print
the file names in every slide as a footer. I have looked
all over powerpoint but did not find anything the only
option i see in Header and Footer is the option to print
Date and Time.

Automatically printing file names on the slides is very
useful when we work on multiple version of files.

Appreciate your help.

Thanks,
Ravi
 
If you don't mind using the footer to store the info, you could just run
this little macro:

=======================
Sub FootPath()
Dim SldNum As Integer
For SldNum = 1 To ActivePresentation.Slides.Count
With ActivePresentation.Slides(SldNum).HeadersFooters
.Footer.Text = ActivePresentation.FullName
.Footer.Visible = msoTrue
End With
Next SldNum
End Sub
========================

Format the master to adjust the way it appears on the slides.
B


--
Please spend a few minutes checking out www.pptfaq.com This link will
answer most of our questions, before you think to ask them.

Change org to com to defuse anti-spam, ant-virus, anti-nuisance
misdirection.
 
Hello Mr. B,

Thanks a bunch. That was exactly what I was looking for. I created a button which runs this macro and it works perfect. Its simple and easy to use.

Thanks again for your help.

Sonia - also appreciate your help on this.

Have been trying to thank but kept getting error message from the site.

Cheers,
Ravi
 
Back
Top