Jump to content

How to create and use a Progress Bar in Microsoft PowerPoint presentation - Other Helpful Tutorials - InviteHawk - The #1 Trusted Source for Free Tracker Invites

Buy, Sell, Trade, or Find Free Invites for top private trackers like redacted, blutopia, losslessclub, femdomcult, filelist, Chdbits, Uhdbits, empornium, iptorrents, hdbits, gazellegames, animebytes, privatehd, myspleen, torrentleech, morethantv, bibliotik, alpharatio, blady, passthepopcorn, brokenstones, pornbay, cgpeers, cinemageddon, broadcasthenet, learnbits, torrentseeds, beyondhd, cinemaz, u2.dmhy, Karagarga, PTerclub, Nyaa.si, Polishtracker, and many more.

Recommended Posts


  • Member ID:  53,159
  • Followers:  10
  • Topic Count:  305
  • Topics Per Day:  0.15
  • Content Count:  618
  • Content Per Day:  0.31
  • Reputation:   3,455
  • Achievement Points:  1,167
  • Days Won:  5
  • Joined:  12/29/2020
  • Status:  Offline
  • Last Seen:  

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!

Open your preferred PowerPoint presentation

Select Macros and inject a name

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

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

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.

Choose the name of the Macro, and finish off by selecting Run, and that’s it.


  • Member ID:  48,211
  • Followers:  60
  • Topic Count:  144
  • Topics Per Day:  0.06
  • Content Count:  30,040
  • Content Per Day:  13.21
  • Reputation:   2,202
  • Achievement Points:  38,182
  • Days Won:  11
  • Joined:  04/09/2020
  • Status:  Offline
  • Last Seen:  

Avoid unnecessary posts such as 'Thank you', 'Welcome', etc. Such posts will be deleted and user will be warned if it happens again. If caught spamming, the following actions are applicable -

  • First time - Warning
  • Second time - 5000 Points will be deducted
  • Third time - Ban for 7 days
  • Fourth time - Permanent Ban

If the post helped you, reward the user by reacting to the post like this -

download.png

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Read this before posting -
  • Only post if you have something valuable to contribute.
  • Avoid unnecessary posts such as 'Thank you', 'Welcome', etc. Such posts will be deleted and you will be warned if it happens again.
  • If the post helped you, reward the user by reacting to the post like this -                      1.jpg
Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Customer Reviews

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.