PC Review


Reply
Thread Tools Rate Thread

adding a variable footer

 
 
Brent
Guest
Posts: n/a
 
      10th Apr 2007
Hi- I have about 70 photos in a slide show- in the notes I have the persons
name- I was wondering is there a way to have the name of the person (perhaps
the first name) show up on the slide (with out cutting and pasting it in for
each person) as a footer or header?

Thanks
Brent


 
Reply With Quote
 
 
 
 
David M. Marcovitz
Guest
Posts: n/a
 
      10th Apr 2007
"Brent" <(E-Mail Removed)> wrote in
news:(E-Mail Removed):

> Hi- I have about 70 photos in a slide show- in the notes I have the
> persons name- I was wondering is there a way to have the name of the
> person (perhaps the first name) show up on the slide (with out cutting
> and pasting it in for each person) as a footer or header?
>
> Thanks
> Brent
>
>


This could be done with a macro. Something like this is a quick and dirty
version that takes whatever text is in the notes section and adds a text
box to the bottom of the slide with that text:

Sub foo()
Dim oSld As Slide
Dim myText As String
For Each oSld In ActivePresentation.Slides
myText = oSld.NotesPage.Shapes(2).TextFrame.TextRange.Text
oSld.Shapes.AddTextbox(msoTextOrientationHorizontal, 0, 500, 500,
50) _
.TextFrame.TextRange.Text = myText
Next oSld
End Sub


--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
Reply With Quote
 
=?Utf-8?B?UFBUTWFnaWNpYW4=?=
Guest
Posts: n/a
 
      10th Apr 2007
You can make a separate Slide Master for each person and apply each to the
appropriate slides.
--
Thanks,
Glenna Shaw
Microsoft PowerPoint MVP Team
http://www.pptmagic.com



"Brent" wrote:

> Hi- I have about 70 photos in a slide show- in the notes I have the persons
> name- I was wondering is there a way to have the name of the person (perhaps
> the first name) show up on the slide (with out cutting and pasting it in for
> each person) as a footer or header?
>
> Thanks
> Brent
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Footer variable for user name? =?Utf-8?B?QWxsaXNvbg==?= Microsoft Excel Programming 3 21st Feb 2006 07:20 PM
How can I insert a cell reference in a footer (eg for variable foo =?Utf-8?B?R1c=?= Microsoft Excel Misc 1 15th Dec 2004 10:58 AM
How can I insert a cell reference in a footer (eg for variable foo =?Utf-8?B?d25nZzAwMQ==?= Microsoft Excel Misc 1 15th Dec 2004 10:56 AM
macro variable in footer Marty Microsoft Word New Users 1 24th Sep 2003 05:34 AM
Datalist - how (if) to use a sub variable or session variable in the footer? KathyB Microsoft ASP .NET 1 17th Jul 2003 02:35 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:58 AM.