Which keyboard shortcut duplicates a slide: quick guide

Master the exact keyboard shortcuts to duplicate slides across PowerPoint, Google Slides, and more. This practical guide covers Windows and macOS shortcuts, UI alternatives, and best practices for fast, reliable duplication.

Shortcuts Lib
Shortcuts Lib Team
·5 min read
Duplicate a Slide - Shortcuts Lib
Photo by HOerwin56via Pixabay
Quick AnswerFact

To duplicate a slide, use the built‑in duplicate command. In most presentation apps, you can duplicate by selecting the slide and pressing a platform‑specific shortcut: Windows users press Ctrl+D, macOS users press Cmd+D. You can also use the menu: Slide → Duplicate in PowerPoint or Google Slides. This article explains other methods and best practices for reliable duplication across tools.

Why duplicating slides matters in modern presentations

In professional workflows, duplicating a slide is a frequent operation when you want to reuse layouts, preserve formatting, and maintain consistent visuals across a deck. The primary goal is speed without sacrificing accuracy. The keyword to remember is the action: duplicating a slide should produce an exact copy at the desired position, inheriting all elements such as text boxes, images, and formatting. Large teams benefit from standardized templates and bulk duplication when building recurring sections like introductions or agendas. Shortcuts and automation save minutes per deck, which compounds across dozens of presentations. According to Shortcuts Lib analysis, the most efficient teams combine keyboard shortcuts with templated slides to keep consistency.

JavaScript
// Google Apps Script: duplicate the active slide in a Google Slides presentation function duplicateActiveSlide() { var presentation = SlidesApp.getActivePresentation(); var slides = presentation.getSlides(); var activeIndex = SlidesApp.getActivePresentation().getSelection().getCurrentPage().getIndex(); var source = slides[activeIndex]; source.duplicate(); // inserts a copy immediately after the source slide Logger.log('Duplicated slide ' + (activeIndex + 1)); }

This script demonstrates a safe, repeatable way to duplicate the currently selected slide via the Google Slides API. It’s ideal for batch processing in larger decks. Alternatives include PowerPoint’s VBA or Office Scripts when available, but Google Apps Script remains a robust, cross‑platform option for teams on Google Workspace.

Why fast duplication improves consistency:

  • Preserves layout and styles by reusing a single source of truth
  • Reduces manual reformatting errors across multiple slides
  • Supports rapid iteration during design reviews

Common scenarios where duplication shines:

  • Creating a recurring agenda slide sequence
  • Building a set of content slides from a master layout
  • Generating multiple case studies or product pages with identical structure

codeFenceLanguageForSection1AssistanceThisBlockUsesJavascriptAndGoogleAppsScriptHere

Steps

Estimated time: 15-25 minutes

  1. 1

    Open presentation and select slide

    Navigate to the deck and click the slide thumbnail in the left pane to select it. Ensure the slide you want to duplicate is the active selection.

    Tip: Use the arrow keys to move focus between slides before selecting.
  2. 2

    Use the duplicate shortcut

    Press the platform‑specific shortcut to create a copy of the selected slide. The copy should appear immediately after the original in the slide order.

    Tip: If the copy doesn’t appear, check that the slide is active and not locked by permissions.
  3. 3

    Verify formatting and content

    Open the duplicated slide and verify that all text, images, and shapes match the source. Adjust any items that rely on dynamic data or linking.

    Tip: If you’re using a template, ensure placeholders are filled correctly.
  4. 4

    Automate duplication (optional)

    If you perform this task regularly, use a small script (see code example) to automate duplication across a batch of slides or decks.

    Tip: Keep a master template in a dedicated library to minimize drift.
Pro Tip: Pair duplication with a standardized template to maintain consistent fonts, colors, and spacing.
Warning: Be careful when duplicating near section breaks; verify slide order and section headers afterward to avoid misalignment.
Note: On macOS, if Cmd+D isn’t working, check OS keyboard shortcuts or use the menu: Slide > Duplicate.

Keyboard Shortcuts

ActionShortcut
Duplicate current slideWhile the slide is selected in the left thumbnail pane.Ctrl+D
Duplicate and insert after current slideUseful when you want the copy immediately after the original.Ctrl++D
Copy and paste slide as a new slideA fallback when a dedicated duplicate shortcut isn’t available.Ctrl+C then Ctrl+V

Questions & Answers

How do I duplicate a slide in PowerPoint if the shortcut doesn’t work?

If the shortcut fails, try the Slide menu: Slide > Duplicate. Ensure the slide is selected in the thumbnail pane. You can also right‑click the slide and choose Duplicate. Check for conflicting keyboard shortcuts or disabled add‑ins.

If the shortcut isn’t working, use the menu options to duplicate the slide, and verify the slide is selected in the left pane.

Is there a way to duplicate multiple slides at once?

Some tools support duplicating a range of slides by selecting multiple thumbnails before pressing the duplicate shortcut. In Google Slides and PowerPoint, you can usually select multiple slides with Shift+Click and then duplicate; you may need to use the menu option for batch duplication.

Yes, you can often select several slides and duplicate them together using the menu or a batch command.

Can I duplicate slides while preserving master layouts?

Duplicating a slide preserves the layout and formatting of the source slide, including master/layout settings if supported by the app. When templates are involved, ensure the master slide structure is consistent across duplicates.

Duplicating keeps the look consistent, especially if you’re working from a master or template.

What should I do if the duplicated slide loses data or formatting?

If duplication drops formatting, re-apply the source slide’s theme and layout, or copy/paste elements with Paste Special to retain formatting. In some cases, recreating the slide from a template reduces drift.

Sometimes you need to reapply formatting or reinsert objects to keep the look consistent.

Main Points

  • Use platform shortcuts Ctrl+D (Windows) or Cmd+D (macOS) to duplicate slides.
  • Verify duplicates immediately to avoid drift in formatting or content.
  • Automate duplication with Apps Script for Google Slides to save time on large decks.
  • Keep a centralized slide template to ensure consistent results across duplicates.

Related Articles