Nicole Mauser-Storer
--
Kathryn Jacobs, BrainBench MVP MS PowerPoint (Get Certified at
http://www.brainbench.com)
Get PowerPoint answers at http://www.powerpointanswers.com
Cook anything outdoors with http://www.outdoorcook.com
Kathy is a trainer, writer, Girl Scout, parent, and whatever else there
is time for
Life is meant to be lived. But:
if we live without making a difference, it makes no difference that we lived
Super Idea! I never would have thought of that. The only problem is that this
is for a department manager who is doing good to open powerpoint and anything
fancy only confuses him. I can see if this will work for him, but do you have
any other ideas?
Nicole
Nicole
Sub rebmuN()
Dim i As Integer
Dim iPageNumber As Integer
iPageNumber = ActivePresentation.Slides.Count
For i = 1 To ActivePresentation.Slides.Count
With ActivePresentation.Slides(i)
.Shapes.AddLabel(msoTextOrientationHorizontal, 661.625, _
503.75, 14.5, 28.875).Name = "rebmuN" & iPageNumber
With .Shapes("rebmuN" & iPageNumber).TextFrame.TextRange
.Text = iPageNumber
With .Font
.Name = "Arial"
.Size = 12
.Color.RGB = RGB(Red:=0, Green:=96, Blue:=236)
End With
End With
End With
iPageNumber = iPageNumber - 1
Next i
End Sub
Brian Reilly, PowerPoint MVP
It's interesting that you ask this question because I was just talking
with Shyam about some tools he's developing. One is to reverse the order
of slides. I wondered why people would request that, and here you are
asking the same thing. So I'm curious: Why is the boss asking for this?
Is this for some kind of count-down presentation or some other reason?
Kathy