Supercharge your PowerPoint productivity with

Supercharge your PPT Productivity with PPTools - Click here to learn more.

Tell me about PPTools

How many slides can a presentation hold?


PPTools
Shape Styles brings the power of styles to PowerPoint. Apply complex formatting with a single click
Merge Excel, CSV or tab-delimited data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
FixLinks prevents broken links when you distribute PowerPoint presentations
Optimizer saves disk space and bandwidth, shrinks your PowerPoint presentations to the right size for email, screenshow or printing
PPT2HTML gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Prep4PDF preserves interactivity in PowerPoint presentations when you convert to PDF
Image Export converts PowerPoint slides to JPG, PNG, GIF, WMF and more

As far as I know, nobody knows the answer to this question. The answer may be "It depends"

But if you feel bold, you could try running this macro. Start with a presentation containing only one blank slide.
The code below will keep adding slides (and putting a text box with the slide number on each) until it reaches the value you've chosen for MaxSlides. Or until PowerPoint crashes? Dunno. As I said, this is for the bold.

Sub MaxItOut()

Dim x As Long
Dim MaxSlides As Long
MaxSlides = 100 ' or however far you want to take this
                ' Longs can take values up to 2,147,483,647
                ' Speaking of Long, it might take a LONG time to run the macro if you max it

' Assuming there's already one slide in the presentation
For x = 2 To MaxSlides
    ActivePresentation.Slides.Add x, ppLayoutBlank
    With ActivePresentation.Slides(x)
        With .Shapes.AddTextbox(msoTextOrientationHorizontal, 100, 100, 200, 200)
            .TextFrame.TextRange.Text = CStr(x)
        End With
    End With
Next x

End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.

Page copy protected against web site content infringement by Copyscape Contents © 1995-2008 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Español    Deutsch    Français    Português    Italiano    Nederlands    Greek    Japanese    Korean    Chinese



Supercharge your PPT Productivity with PPTools


content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

How many slides can a presentation hold?
http://www.pptfaq.com/FAQ00513.htm
Last update 09 September, 2006