ACCOUNT LOGIN
Powerpoint progress bar is easy to add using our macro.

Powerpoint progress bar is easy to add using our macro.

How to add a progress bar to powerpointOne of the things that annoys me the most when watching someone’s presentation (unless it’s by Daniel Pink) is that there is no way to tell how many slides are left. Can I still nap, or can I start packing up my gadgets….?

Here is a solution for how to get less powerpointless when presenting and let your audience know where you stand in the deck flow. With this nifty macro you can add a progress bar to your presentations. It’s a simple procedure, anybody can do it. Even you! Just follow these steps.

  1. In Power Point, go to Tools > Macro > Visual Basic Editor.
  2. In Office 2010 you might need to activate the Developer tab in order to get to the editor.
  3. The Mac version will take you there through Developer tab > Editor.
  4. Once you are in the editor, go Insert > Module.
  5. Paste the following code in this newly created module:
    Sub Presentation_Progress_Marker()
    On Error Resume Next
    With ActivePresentation
    For N = 2 To .Slides.Count
    .Slides(N).Shapes(“Progress_Marker”).Delete
    Set s = .Slides(N).Shapes.AddShape(msoShapeRectangle, 0, 0, N * .PageSetup.SlideWidth / .Slides.Count, 10)
    Call s.Fill.Solid
    s.Fill.ForeColor.RGB = RGB(23, 55, 94)
    s.Line.Visible = False
    s.Name = “Progress_Marker”
    Next N:
    End With
    End Sub
  6. Close the editor.
  7. Finally, run the macro: Tools>Macro>Macros and select—Presentation_Progress_Marker.

Once the macro runs, you will see a nice blue line going through the top of your deck starting on the second slide. Obviously, you can control the color, position and pretty much any attribute of the progress bar within the code, it’s all there 🙂

Now go impress your colleagues with this new awesome feature of your decks!

About The Author

Dmitry Shesterin

Dmitry has done everything. From sales and marketing in mobile telecommunications and printing (in Russia and Germany) to sales engineer and marketing lead (at Faronics). Dmitry has an unrivaled love of Excel and his sense of humor resembles Ambrose Bierce, his favorite writer.

Sign Up For A 30-Day Trial

BOXAE

Deep Freeze Enterprise

Centralized deployment and management as well as a host of configuration options for the Enterprise.

  • This field is for validation purposes and should be left unchanged.

Ready to find out more about Faronics? Let us know how to reach you.

We're here to help you in any way possible.