How to use PPT progress bar percentage

Asked By 40 points N/A Posted on -
qa-featured

Hello Guys,

I am using MS PowerPoint 2010 in my PC, I need to know how to use PPT progress bar percentage in the presentation. Please do the needful for explaining it in detail, so that I can create my presentations more appealing using the progress bar.

Thanks,

Horace T Perry

SHARE
Answered By 15 points N/A #173167

How to use PPT progress bar percentage

qa-featured

Hi Horace,
The steps to add progress bar to PowerPoint presentation are as follows:
1) Complete the presentation, Go to 'Tools', Select 'Macro', Click 'Visual Basic Editor'
2) In the new window, select 'Insert', click 'Module' and copy the below text
3) Sub AddProgressBar()
   On Error Resume Next
   With ActivePresentation
   For X = 1 To Slides.Count
   .Slides(X).Shapes("PB").Delete
   Set s=.Slides(X).Shapes.AddShape(msoShapeRectangle,_0,.PageSetup.SlideHeight-12,_X*.PageSetup.SlideWidth/.Slides.Count,12)
   s.Fill.ForeColor.RGB=RGB(127,0,0)
   s.Name="PB"
   Next X:
   End With
   End Sub
4) Go to 'File', > 'Close' > 'Return to Microsoft PowerPoint'
5) In the PowerPoint page, Go to 'Tools' > 'Macro' > 'Macros'
6) Select the 'AddProgressBar', click 'Execute'

Related Questions