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

Proud member of

PPTools

Image Export converts PowerPoint slides to high-quality images.

PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements

Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more

Resize your presentations quickly and without distortion

Language Selector switches the text in your presentation from one language to another

FixLinks prevents broken links when you distribute PowerPoint presentations

Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.

How many slides can a presentation hold?

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.


Did this solve your problem? If so, please consider supporting the PPT FAQ with a small PayPal donation.
Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2022 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.

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_How_many_slides_can_a_presentation_hold-.htm
Last update 07 June, 2011
Created: