βοΈ 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
- Go to Split PPT Slides
- Upload your
.pptxfile - 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
- Click Split
- 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
- Open the presentation in PowerPoint
- Delete the slides you don't need
- Save As with a new filename
- Reopen the original
- 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.