{"id":186880,"date":"2021-02-23T13:24:31","date_gmt":"2021-02-23T10:24:31","guid":{"rendered":"https:\/\/en.buradabiliyorum.com\/how-to-create-a-progress-bar-in-microsoft-powerpoint\/"},"modified":"2021-02-23T13:24:31","modified_gmt":"2021-02-23T10:24:31","slug":"how-to-create-a-progress-bar-in-microsoft-powerpoint","status":"publish","type":"post","link":"https:\/\/buradabiliyorum.com\/en\/how-to-create-a-progress-bar-in-microsoft-powerpoint\/","title":{"rendered":"#How to Create a Progress Bar in Microsoft PowerPoint"},"content":{"rendered":"<p><strong>&#8220;#How to Create a Progress Bar in Microsoft PowerPoint&#8221;<\/strong><\/p>\n<div>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-429061\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2019\/07\/stock-lede-microsoft-office-powerpoint-3.png\" alt=\"Microsoft PowerPoint Logo\" width=\"649\" height=\"300\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>A progress bar is a graphic that, in PowerPoint, visually represents the percentage of the slideshow that has been completed. It\u2019s also a good indicator of the remaining amount. Here\u2019s how to create a progress bar in Microsoft PowerPoint.<\/p>\n<p>You can manually create a progress bar by inserting a shape at the bottom of each slide. The problem with this <a href=\"https:\/\/buradabiliyorum.com\/en\/category\/download-scripts-themes-apps\/\" data-internallinksmanager029f6b8e52c=\"9\" title=\"Download Scripts &amp; Themes &amp; Apps\" target=\"_blank\" rel=\"noopener\">app<\/a>roach is that you\u2019ll need to measure the length of each shape based on the number of slides in the presentation. Additionally, if you add or remove a slide, you\u2019ll need to manually redo the progress bar on every slide in the slideshow.<\/p>\n<p>To keep everything consistent and save yourself a serious headache, you can\u00a0use a macro to create a progress bar. With this macro, the progress bar will automatically adjust itself based on the number of slides in the presentation.<\/p>\n<p><strong>RELATED:<\/strong> <strong><em>Macros Explained: Why Microsoft Office Files Can Be Dangerous<\/em><\/strong><\/p>\n<p>First, open the PowerPoint presentation that you would like to create a progress bar for. Once it\u2019s open, click the \u201cView\u201d tab, then select \u201cMacros.\u201d<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-709551\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/01\/Macros-option.png\" alt=\"\" width=\"347\" height=\"188\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>The \u201cMacro\u201d window will appear. In the text box below \u201cMacro Name,\u201d type in a name for your new macro. The name can\u2019t contain spaces. Once it\u2019s entered, click \u201cCreate,\u201d or, if you\u2019re using Mac, click the \u201c+\u201d icon.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-709553\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/01\/Enter-macro-name-and-click-create.png\" alt=\"\" width=\"388\" height=\"238\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>The \u201cMicrosoft Visual Basic for Applications (VBA)\u201d window will now open. In the editor, you\u2019ll see this code:<\/p>\n<pre>Sub ProgressBar()&#13;\n&#13;\nEnd Sub<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-709560\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/01\/Macro-code-in-editor.png\" alt=\"\" width=\"436\" height=\"301\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>First, place your cursor between the two lines of code.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-709562\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/01\/Cursor-placement-in-editor.png\" alt=\"\" width=\"365\" height=\"221\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>Next, copy and paste this code:<\/p>\n<pre>On Error Resume Next<br data-insertor-excluded=\"1\"\/>With ActivePresentation<br data-insertor-excluded=\"1\"\/>For X = 1 To .Slides.Count<br data-insertor-excluded=\"1\"\/>.Slides(X).Shapes(\"PB\").Delete<br data-insertor-excluded=\"1\"\/>Set s = .Slides(X).Shapes.AddShape(msoShapeRectangle, _<br data-insertor-excluded=\"1\"\/>0, .PageSetup.SlideHeight - 12, _<br data-insertor-excluded=\"1\"\/>X * .PageSetup.SlideWidth \/ .Slides.Count, 12)<br data-insertor-excluded=\"1\"\/>s.Fill.ForeColor.RGB = RGB(127, 0, 0)<br data-insertor-excluded=\"1\"\/>s.Name = \"PB\"<br data-insertor-excluded=\"1\"\/>Next X:<br data-insertor-excluded=\"1\"\/>End With<\/pre>\n<p>Once it\u2019s pasted, your code should look like this in the editor.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-709563\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/01\/Final-code-format-in-the-editor.png\" alt=\"\" width=\"567\" height=\"359\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<blockquote class=\"admonishment_note\"><p><strong>Note:<\/strong> There are no line breaks now between the first and last line of code.<\/p><\/blockquote>\n<p>You can now close the VBA window. Back in Microsoft PowerPoint, click \u201cMacros\u201d in the \u201cView\u201d tab again.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-709551\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/01\/Macros-option.png\" alt=\"\" width=\"347\" height=\"188\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>Next, choose your macro name (\u201cProgressBar\u201d in our example) to select it, then click \u201cRun.\u201d<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-709565\" src=\"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2021\/01\/Select-ProgressBar-macro.png\" alt=\"\" width=\"390\" height=\"243\" onload=\"pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\" onerror=\"this.onerror=null;pagespeed.lazyLoadImages.loadIfVisibleAndMaybeBeacon(this);\"\/><\/p>\n<p>The progress bar will now appear at the bottom of each slide of your presentation.<\/p>\n<p>If you delete a slide, the progress bar will adjust itself automatically. If you add a new slide, you\u2019ll need to run the macro again (View &gt; Macro &gt; Run). It\u2019s a minor inconvenience when compared to adjusting everything manually.<\/p>\n<\/div>\n<p><script>\n setTimeout(function(){\n  !function(f,b,e,v,n,t,s)\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';\n  n.queue=[];t=b.createElement(e);t.async=!0;\n  t.src=v;s=b.getElementsByTagName(e)[0];\n  s.parentNode.insertBefore(t,s) } (window, document,'script',\n  'https:\/\/connect.facebook.net\/en_US\/fbevents.js');\n   fbq('init', '335401813750447');\n   fbq('track', 'PageView');\n  },3000);\n<\/script><\/p>\n<blockquote><p><strong><span style=\"color: #ff6600;\">If you liked the article, do not forget to share it with your friends. Follow us on\u00a0<span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https:\/\/news.google.com\/publications\/CAAqBwgKMLG0nwswvr63Aw\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Google News<\/a><\/span>\u00a0too, click on the star and choose us from your favorites.<\/span><\/strong><\/p><\/blockquote>\n<blockquote>\n<p style=\"text-align: center;\">For forums sites go to <span style=\"color: #ff9900;\"><a style=\"color: #ff9900;\" href=\"https:\/\/forum.buradabiliyorum.com\/\" target=\"_blank\" rel=\"noopener\">Forum.BuradaBiliyorum.Com<\/a><\/span><\/strong>\n<\/p><\/blockquote>\n<blockquote>\n<p style=\"text-align: center;\"><strong>If you want to read more like this article, you can visit our <span style=\"color: #ff9900;\"><a style=\"color: #ff9900;\" href=\"https:\/\/en.buradabiliyorum.com\/technology\/\" target=\"_blank\" rel=\"noopener\">Technology category.<\/a><\/span><\/strong><\/p>\n<\/blockquote>\n<p><span style=\"color: black;\"><a style=\"color: #ff9900;\" href=\"https:\/\/www.howtogeek.com\/709523\/how-to-create-a-progress-bar-in-microsoft-powerpoint\/\" target=\"_blank\" rel=\"noopener\">Source<\/a><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;#How to Create a Progress Bar in Microsoft PowerPoint&#8221; A progress bar is a graphic that, in PowerPoint, visually represents the percentage of the slideshow that has been completed. It\u2019s also a good indicator of the remaining amount. Here\u2019s how to create a progress bar in Microsoft PowerPoint. You can manually create a progress bar&#8230;<\/p>\n","protected":false},"author":1,"featured_media":186881,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/www.howtogeek.com\/wp-content\/uploads\/2019\/07\/stock-lede-microsoft-office-powerpoint-3.png?height=200p&trim=2,2,2,2","fifu_image_alt":"","footnotes":""},"categories":[18],"tags":[],"class_list":["post-186880","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"_links":{"self":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/posts\/186880","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/comments?post=186880"}],"version-history":[{"count":0,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/posts\/186880\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/media\/186881"}],"wp:attachment":[{"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/media?parent=186880"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/categories?post=186880"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/buradabiliyorum.com\/en\/wp-json\/wp\/v2\/tags?post=186880"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}