Page numbers for hidden slides

R

R Ormerod

Is it possible to skip hidden slides in a page numbering sequence, e.g.

Slide xx
Hidden slide
Hidden slide
Slide xx +1

(Powerpoint 2003)
 
J

John Wilson

I thought 'd included some code!

Here it is:

Sub numbers()
Dim osld As Slide
Dim i as Integer
For Each osld In ActivePresentation.Slides
If osld.SlideShowTransition.Hidden = False Then
i = i + 1
osld.HeadersFooters.Footer.Text = "Slide " & i
Else
osld.HeadersFooters.Footer.Text = "Slide " & i & "H"
End If
Next
End Sub
--
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top