File name in footer automatically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Windows 2000 professional, Office XP
PowerPoint version 2002 (10.4205.4219) SP-2

How do I automatically put the filename in the footer?

I have opened the handout master but apart from the date there only
seems to be a box to type comments in.

I could type the filename there but can't it be done automatically on
every presentation I do; as it is in Word?
 
nospam said:
Windows 2000 professional, Office XP
PowerPoint version 2002 (10.4205.4219) SP-2

How do I automatically put the filename in the footer?

I have opened the handout master but apart from the date there only
seems to be a box to type comments in.

I could type the filename there but can't it be done automatically on
every presentation I do; as it is in Word?

http://support.microsoft.com/?scid=kb;EN-US;Q222797
 
I've always wanted to do this also as my old company had this
automatically appearing when going to File, Print. Anyway, I have
copied and pasted the VB code into a PPT file to use, and the macro
works ONLY if my presentation has only one slide. Any more than that,
and the following Debug message appears:

Run-time error ‘-2147188160 (80048240)’
Slide (unknown member) : Invalid request. Command cannot be applied to
a slide range with multiple slides

and when I press the Debug button, it opens the VB editor at the line:

' Updates the individual slides that do not follow the master.
With ActivePresentation.Slides.Range.HeadersFooters

I am a bit baffled by this. All the PPT files I tried this on have
correctly inserted slides, all following the master correctly etc.

Any help eagerly welcomed!!

Thanks
 
I have not had time to try it yet but thanks for the warning.

I am sure this feature was in Word version 2.0 so I have to admit to
being surprised that it is not a standard feature in PP!
 
[CRITICAL UPDATE - Anyone using Office 2003 should install the critical
update as soon as possible. From PowerPoint, choose "Help -> Check for
Updates".]

Hello,

PowerPoint does not have the specific capability that you are looking for
so you would have to enter the file name and path manually, write a macro
or use a 3rd party add-in.

If you (or anyone else reading this message) think that PowerPoint should
have the option to include an automatically updatable filename and path
"field" to a presentations header or footer text or other
calculated/dynamic fields such as number of slides, author, modified date,
etc. (without having to resort to VBA or add-ins), don't forget to send
your feedback (in YOUR OWN WORDS, please) to Microsoft at:

http://register.microsoft.com/mswish/suggestion.asp

As with all product suggestions, it's important that you not just state
your wish but also WHY it is important to you that your product suggestion
be implemented by Microsoft. Microsoft receives thousands of product
suggestions every day and we read each one but, in any given product
development cycle, there are only sufficient resources to address the ones
that are most important to our customers so take the extra time to state
your case as clearly and completely as possible.

IMPORTANT: Each submission should be a single suggestion (not a list of
suggestions).

John Langhans
Microsoft Corporation
Supportability Program Manager
Microsoft Office PowerPoint for Windows
Microsoft Office Picture Manager for Windows

For FAQ's, highlights and top issues, visit the Microsoft PowerPoint
support center at: http://support.microsoft.com/default.aspx?pr=ppt
Search the Microsoft Knowledge Base at:
http://support.microsoft.com/default.aspx?pr=kbhowto

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of any included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
 
Does someone have a solution to this ("Command cannot be applied to a slide range with multiple slides") as I have the same problem.
 
Does someone have a solution to this ("Command cannot be applied to a slide range
with multiple slides") as I have the same problem.

You haven't given us much to work with here.

Are you trying to write a macro to apply footers to multiple slides? If so, please
post the code in question.

Otherwise, describe what you're doing when you see this error message (I assume
it's an error message?)
 
As one of the previous messages in this discussion stated

"Anyway, I have copied and pasted the VB code [as indicated in http://support.microsoft.com/?scid=kb;EN-US;Q22279
] into a PPT file to use, and the macro works ONLY if my presentation has only one slide. Any more than that, and the following Debug message appears

Run-time error ‘-2147188160 (80048240)â€
Slide (unknown member) : Invalid request. Command cannot be applied to a slide range with multiple slide

and when I press the Debug button, it opens the VB editor at the line

' Updates the individual slides that do not follow the master. With ActivePresentation.Slides.Range.HeadersFooter

I am a bit baffled by this. All the PPT files I tried this on have correctly inserted slides, all following the master correctly etc.

This is the problem that I was refering to. Can someone advise on how this error can be overcome for presentations with multiple slides

A similar problem is encountered with the alternative code as provided in http://support.microsoft.com/default.aspx?scid=kb;en-us;159365&Product=pp


----- Steve Rindsberg wrote: ----

Does someone have a solution to this ("Command cannot be applied to a slide range
with multiple slides") as I have the same problem

You haven't given us much to work with here

Are you trying to write a macro to apply footers to multiple slides? If so, please
post the code in question

Otherwise, describe what you're doing when you see this error message (I assume
it's an error message?



-
Steve Rindsberg, PPT MV
PPT FAQ: www.pptfaq.co
PPTools: www.pptools.co
 
As one of the previous messages in this discussion stated:

It's best to reply to existing messages when you want to continue the
discussion.
"Anyway, I have copied and pasted the VB code [as indicated in http://support.microsoft.com/?scid=kb;EN-US;Q222797
] into a PPT file to use, and the macro works ONLY if my presentation has only
one slide. Any more than that, and the following Debug message appears:
Run-time error ‘-2147188160 (80048240)’
Slide (unknown member) : Invalid request. Command cannot be applied to a slide range with multiple slides

and when I press the Debug button, it opens the VB editor at the line:

' Updates the individual slides that do not follow the master. With ActivePresentation.Slides.Range.HeadersFooters


Try this:

Dim oSl As Slide

For Each oSl In ActivePresentation.Slides
With oSl.HeadersFooters
.Footer.Text = "This seems to work"
End With

Next oSl
 
Back
Top