Inside The Web
    Facebook Twitter Instagram
    Inside The Web
    • Office
      • Excel
      • Ms Word
      • OneDrive
      • Google Docs
      • Google Sheets
      • Google Drive
    • Email
      • Gmail
      • Outlook
      • Emal Etiquette
    • Office Etiquette
    • Productivity
    Inside The Web
    Home»Office»PowerPoint»How to Copy Slides From One Powerpoint to Another

    How to Copy Slides From One Powerpoint to Another

    AadarshBy AadarshSeptember 23, 2023 PowerPoint 5 Mins Read

    While creating presentations on similar subjects to the existing ones, you might need to incorporate specific slides from the original presentation.

    Suppose the executive team has already created a detailed presentation on your company’s revenue. If you’re tasked with creating a similar presentation, you can copy a few slides from the original one as a reference.

    Normally, we use the Click and Drag method to copy slides from one PowerPoint to another. But, if you don’t want to open the slides, you do so via the Reuse Slides option, or if you’re familiar with the language, you can also use VBA code.

    Click and Drag Method

    As the name suggests, you can simply drag and drop slides from one PowerPoint file to another. While doing so, you can insert multiple slides anywhere to your liking.

    1. Open both the PowerPoint files — one which contains the slides you want to copy and another where you need to copy them.
    2. Rearrange them side-by-side. For this, you can manually position them using the mouse or use the Windows + Left/Right arrow shortcut.how to copy slides from one powerpoint to another
    3. Select the slides you want to copy.
    4. To select multiple adjacent slides, click the first slide. Then, press and hold the Shift key while selecting the last slide.how to copy slides from one powerpoint to another
    5. To select multiple non-adjacent slides, press and hold the Ctrl. Then, simply select the preferred slides you want to insert.how to copy slides from one powerpoint to another
    6. Now, click and drag over the slides into the next PowerPoint where you want to insert them. Once the horizontal bar appears below the slide, release the mouse.how to copy slides from one powerpoint to another
    7. While the copied slides are still selected, click the Clipboard icon that appears on one of such slides. Then, choose the Keep Source Formatting option to use their initial theme.how to copy slides from one powerpoint to another

    Copy and Paste Method

    Copy-pasting is one of the simplest methods to copy slides from one PowerPoint presentation to another. You can use the shortcuts Ctrl + C to copy and Ctrl + V to paste slides.

    1. Open the PowerPoint from which you can want to copy the slides.
    2. On the Left panel, you will see a list of slides serially.how to copy slides from one powerpoint to another
    3. Right-click on the slide you want to copy and click Copy.how to copy slides from one powerpoint to another
    4. To copy multiple sequential slides, click on the first slide. Now, hold the Shift key and click on the last slide. Then, right-click and select Copy or press the Ctrl + C key. how to copy slides from one powerpoint to another
    5. To copy multiple non-sequential slides, hold Ctrl and click on the slides you want. Then, right-click and select Copy or press the Ctrl + C key. how to copy slides from one powerpoint to another
    6. Now open the presentation where you want to paste and press Ctrl + V.

    While pasting, if you want to paste without losing the formatting of the slides, you can right-click and select Keep Source Formatting in Paste Options. 

    Likewise, select Use Destination Theme while pasting to take the theme of the presentation you are pasting into.

    Using the Reuse Slides Option

    With the Reuse Slides option, you don’t need to open another PowerPoint file in a separate window. You can browse other PowerPoint files within the same file you are currently working on and insert the necessary slides from there.

    Even better, the source file from where you copied the files will remain intact. So you are safe from accidentally making changes to the original file.

    Open the PowerPoint file where you want to paste the slides. To start with a new presentation, launch PowerPoint and click Blank Presentation.

    1. Under the Home tab, click New Slide and select the Reuse Slides option.how to copy slides from one powerpoint to another
    2. Once the Reuse Slides pane appears on the right, you should see a list of recently opened slides. If you don’t find anything, click Browse and open the PowerPoint file that contains the slides you want to copy from.how to copy slides from one powerpoint to another
    3. From the right pane, pick a slide that you want to insert. Right-click on it and choose one of the following options.how to copy slides from one powerpoint to another
      • Insert Slide: Insert the selected slide below the selected slide.
      • Insert All Slides: Insert all the slides from the right pane.
      • Apply Theme to All Slides: Apply the theme of the slides in the right pane to existing slides.
      • Apply Theme to Selected Slides: Apply the theme of the selected slide in the right pane to every existing slide selected in the Slides pane.
    4. While using the Insert options, enable the Keep source formatting option to retain the original format. Or, keep it unchecked if you only want to copy their content and match the existing theme.how to copy slides from one powerpoint to another
    Note: In case you inserted the slides in the wrong place, enable the Slide Sorter option under the View tab. Then, click and drag to the preferred positions.

    Using VBA Code

    Using VBA, you can easily insert codes to copy slides from one PowerPoint to another.

    You can access VBA by simply pressing Alt + F11 on your keyboard. Moreover, you can also access it from the Developer tab on the ribbon.

    1. Go to the File tab and click Options.
    2. Click on the Customize Ribbon and go to the Main Tabs.how to copy slides from one powerpoint to another
    3. Tick the Developer option and click OK.how to copy slides from one powerpoint to another
    4. Now, go to the Developer tab and click the Visual Basic option.how to copy slides from one powerpoint to another
    5. In the VBA window, click on the Insert tab and select Module.how to copy slides from one powerpoint to another
    6. Paste the following code in the blank spaces.
    Sub copying()
    Dim objPresentation As Presentation
    Dim i As Integer
    'open the target presentation
    Set objPresentation = Presentations.Open("C:\2.pptx")
    For i = 1 To objPresentation.Slides.Count
        objPresentation.Slides.Item(i).Copy
        Presentations.Item(1).Slides.Paste
        Presentations.Item(1).Slides.Item(Presentations.Item(1).Slides.Count).Design = _
            objPresentation.Slides.Item(i).Design
    Next i
    objPresentation.Close
    End Sub
    1. In the 4th line of the code, replace C:\2.pptx with the location of the file from which you want to copy the slides.how to copy slides from one powerpoint to another
    2. Now, run the module by pressing F5 or clicking the Run option in the Macros window.
    Aadarsh

      Meet Aadarsh—a technology and Artificial Intelligence Enthusiast. Currently, he is pursuing a degree in Computer Science and Information Technology and is set to graduate in a few months. At Insidetheweb, he specializes in PowerPoint and presentation how-to guides. Aadarsh has an innate talent for public speaking, undoubtedly fueled by his love for PowerPoint presentations. Over the years, he has created hundreds of presentations, including lesson plans, quizzes, games, and projects. Now, with plenty of hands-on experience and a deep understanding of PowerPoint, he has been creating user-friendly content that helps people master PowerPoint. Aadarsh embraces self-motivation, acceptance, and consistency as his guiding principles. When not glued to the monitor writing, he finds solace in music and meditation.

      Related Posts

      PowerPoint By Sujata

      How to Quickly Flip Image on PowerPoint

      PowerPoint By Sujata

      How to Add New Fonts On Your PowerPoint Presentation

      PowerPoint By Kritiraj Bhandari

      Best Way to Create a Pie Chart in PowerPoint

      Add A Comment
      Table of ContentsToggle Table of ContentToggle
      • Click and Drag Method
      • Copy and Paste Method
      • Using the Reuse Slides Option
      • Using VBA Code
      • Home
      • About Us
      • Privacy Policy
      © 2025 Inside The Web

      Type above and press Enter to search. Press Esc to cancel.