Productivity

How to Split PowerPoint Slides into Separate Files (2026 Guide)

S
Sharayeh Team
β€’
8 min read
β€’

βœ‚οΈ Split your deck now:
Split PPT Slides β†— | All Tools β†—


How to Split PowerPoint Slides into Separate Files

Large presentations become unwieldy. A 100-slide deck for a conference might need to be split into 4 workshop modules. A training presentation might need individual lesson files. Or you just need to send someone slides 15–22 without sharing the entire deck. Here's how to split PowerPoint files cleanly.


Why Split PowerPoint Presentations?

Scenario Benefit
Training modules Each module as a separate file
Content distribution Send only relevant slides to specific people
File size management Smaller files for email and upload
Reusability Extract reusable slides for other presentations
Collaboration Different people edit different sections
Archiving Organize by topic or date

Method 1: Online Tool (Fastest)

Step-by-Step

  1. Go to Split PPT Slides
  2. Upload your .pptx file
  3. Choose your split method:
    • By individual slide β€” each slide becomes a separate file
    • By range β€” specify slide ranges (e.g., 1–10, 11–20, 21–30)
    • By section β€” split at PowerPoint section breaks
    • Custom selection β€” pick specific slides
  4. Click Split
  5. Download the split files (individually or as a ZIP)

Split Options Explained

Option Output Best For
Individual slides 1 file per slide Reusable slide library
By range Files for each range Training modules
By section Files per section Organized decks
Custom Selected slides only Ad-hoc sharing

Method 2: PowerPoint (Manual)

Using Save As

  1. Open the presentation in PowerPoint
  2. Delete the slides you don't need
  3. Save As with a new filename
  4. Reopen the original
  5. Repeat for each section

Cons: Tedious, error-prone, and destroys the master slide layout if not careful.

Using VBA Macro

For advanced users, a VBA macro can automate splitting:

Sub SplitPresentation()
    Dim sld As Slide
    Dim pres As Presentation
    Dim path As String
    path = ActivePresentation.Path & "\"
    
    For Each sld In ActivePresentation.Slides
        Set pres = Application.Presentations.Add
        sld.Copy
        pres.Slides.Paste
        pres.SaveAs path & "Slide_" & sld.SlideIndex & ".pptx"
        pres.Close
    Next sld
End Sub

Note: This only works on desktop PowerPoint (Windows/Mac), not the web version.


What Happens When You Split

Preserved

  • βœ… Slide content (text, images, charts)
  • βœ… Formatting and design
  • βœ… Speaker notes
  • βœ… Animations and transitions
  • βœ… Hyperlinks (internal links may need updating)
  • βœ… Embedded media

May Need Attention

  • ⚠️ Slide numbers β€” reset to start from 1 in each file
  • ⚠️ Cross-references β€” links between slides may break
  • ⚠️ Master slides β€” all master layouts are included in each file (increases size)
  • ⚠️ Fonts β€” embedded fonts may not carry to all files

Use Cases in Detail

Training & E-Learning

Split a comprehensive training deck into lesson modules:

  • Module 1: Introduction (slides 1–8)
  • Module 2: Core concepts (slides 9–20)
  • Module 3: Practical exercises (slides 21–30)
  • Module 4: Assessment (slides 31–35)

Each module becomes an independent file that learners can access separately.

Conference Presentations

Split a multi-track conference deck:

  • Keynote: Full presentation
  • Workshop A: Subset for breakout session
  • Workshop B: Different subset
  • Handout: Selected slides for attendees

Content Library

Create a reusable slide library:

  • Split by topic (sales, marketing, product)
  • Split by client (customized slides per client)
  • Split by quarter (Q1, Q2, Q3, Q4 content)

Reverse Operation: Merging Slides

After splitting, you may need to recombine slides differently. Use Merge PowerPoint Files to:

  • Combine slides from multiple files
  • Reorder slides across files
  • Create a new master presentation from individual modules

Frequently Asked Questions

Does splitting affect slide quality?

No. The split files contain the original slide content at full quality. There's no compression or quality loss.

Can I split a password-protected PowerPoint?

You'll need to remove the password first. Use Remove PowerPoint Password to unlock the file, then split it.

Does it work with .ppt (old format)?

The tool works best with .pptx (modern format). For .ppt files, open in PowerPoint and save as .pptx first.

Can I split by file size?

Not directly, but you can estimate: each slide is roughly 100KB–2MB depending on media content. Split into ranges that keep each file under your target size.


Related Tools

Share this article: