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.

Reapply slide layout to every slide in the presentation

Problem

You have a presentation to fix up and find that it's been heavily formatted on individual slides, overriding the master formatting. Since "local" (per slide/per text box) formatting always overrides the master, your changes to the master slides don't have any effect on individual slides.

Solution

Re-apply the slide layout to each slide to override any local formatting.

How well this works will depend on the version of PowerPoint you're using, the type of local formatting on each slide and for all we know, the phase of the moon. But this little macro will reapply the layout to every slide in your presentation in a matter of seconds. Give it a try.

Try running it several times, in fact (sometimes PowerPoint needs the layout applied several times to produce the needed effect).

Sub ReapplyLayouts()
  Dim oSl as Slide
  For Each oSl in ActivePresentation.Slides
    oSl.Layout = oSl.Layout
  Next
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

Reapply slide layout to every slide in the presentation
http://www.pptfaq.com/FAQ00871_Reapply_slide_layout_to_every_slide_in_the_presentation.htm
Last update 07 June, 2011
Created: