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.

Convert PowerPoint 2002/2003 comments into PowerPoint 2000 comments

Problem

If you enter comments in PowerPoint 2002 and later, they're invisible to people who open the presentation in PowerPoint 2000 and earlier, and in Mac PowerPoint versions at least through PowerPoint 2004.

And even in PowerPoint 2002 and up, you can't print these new-style comments along with your slide; you can only print them as a second sheet that includes the comment text (but no indication of the comment's location on the slide).

And there's no option to have new-style comments appear during a slide show. This used to be possible in previous versions of PowerPoint.

Solution

There's no way to fix this problem from PowerPoint 2000 and earlier, or from Mac Powerpoint. These solutions only work in the versions of PowerPoint that actually created the new style comments (ie, 2002 and up, Windows).

Our PPTools StarterSet Plus add-in includes a tool that lets you add old-style comments to your PowerPoint 2002 and later presentations.

It also includes a tool that converts existing new-style comments to old-style ones.

Converted comments are visible in older versions/Mac versions of PowerPoint and print along with the slides/appear in slide shows if you so choose.

If you'd rather do it yourself, here's a VBA subroutine you can run in PowerPoint 2002 or later. It locates each comment in the current presentation and adds an old-style comment with the same author, date and text, more or less.

Both comments disappear in PowerPoint 2002 when you choose View and remove the checkmark next to Markup. Only the oldstyle comment will be visible in older versions of PowerPoint.

There's also a routine to delete the new-style comments if you wish.


Sub ConvertComments()
' Converts new-style comments to old

    Dim oSl As Slide
    Dim oSlides As Slides
    Dim oCom As Comment

    Set oSlides = ActivePresentation.Slides
    For Each oSl In oSlides
        For Each oCom In oSl.Comments
            With oSl.Shapes.AddComment(oCom.Left, oCom.Top)
                .TextFrame.TextRange.Text = oCom.Author & " " & oCom.DateTime _
                    & vbCrLf _
                    & oCom.Text
            End With
        Next oCom
    Next oSl

End Sub

Sub DeleteNewComments()
' Optionally delete new-style comments

   Dim oSld as Slide
   Dim x as Long

   For each oSld in ActivePresentation.Slides
      For x = oSld.Comments.Count to 1 Step -1
         oSld.Comments(x).Delete
      Next x
   Next oSld

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

Convert PowerPoint 2002/2003 comments into PowerPoint 2000 comments
http://www.pptfaq.com/FAQ00462_Convert_PowerPoint_2002-2003_comments_into_PowerPoint_2000_comments.htm
Last update 07 June, 2011
Created: