OPERATING SYSTEMSOS Windows

How to create and use Progress Bar in PowerPoint

[ad_1]

Microsoft PowerPoint is a powerful tool that we all like to use. There is no other program that is as complete when it comes down to delivering presentations. Now, some of us would love to be able to create a progress bar for presentations. The question is, right now, is it possible?

How to create and use Progress Bar in PowerPoint

The answer to that question is a resounding yes. Anyone with the right information can easily create a progress bar, and guess what? We’re going to detail how to get it done.

Now, it is possible to manually install a progress bar by installing the relevant shape below each slide. However, that brings additional problems to the table. You see, users must measure the length of every shape that is based on the number of slides in the presentation document.

Also, whenever a slide is removed, you will then be required to recreate the progress bar for all other slides. We can’t be bothered with doing things like that; therefore, we’ve decided to go the Macro route. Here’s how!

  1. Open your preferred PowerPoint presentation
  2. Select Macros and inject a name
  3. Paste code in Microsoft Visual Basic for Applications (VBA) window
  4. Close and run Macro

Let us look at this more from a detailed perspective.

1] Open your preferred PowerPoint presentation

OK, so the first thing you must do here is to open the PowerPoint presentation you want to work with. If not, you can create one from scratch and then work your way up.

2] Select Macros and inject a name

How to create and use Progress Bar in PowerPoint

Once you’ve opened your presentation document, you must now go on ahead and click on View, and from there, be sure to select Macros located at the right. A small window should appear right away after you’ve clicked on the button.

The next step, then, is to type a Macro Name. We’ve chosen to add SlideBar, but you are free to include whatever name that is best suited. Once that is done, hit the create button to complete this section.

3] Paste code in Microsoft Visual Basic for Applications (VBA) window

OK, so after hitting the Create button, a new window will appear. This window is called Microsoft Visual Basic for Applications (VBA), and it is where the magic happens.

From within the editor, you should see the following:

Sub ProgressBar()

End Sub

Click between the two lines of the code, and be sure to copy and paste the following right away:

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

4] Close and run Macro

After you’ve completed the above task, you must now close the VBA window right away.

Once that is done, click on the View tab from within PowerPoint, then select Macros.

Now read: How to create a Funnel Chart in Excel, PowerPoint and Word.

How to create and use Progress Bar in PowerPoint

Source link

Alice AUSTIN

Alice AUSTIN is studying Cisco Systems Engineering. He has passion with both hardware and software and writes articles and reviews for many IT websites.

Leave a Reply

Your email address will not be published. Required fields are marked *