Created
October 13, 2021 09:21
-
-
Save blueboxes/337bc11200fea425a8b0b66781eb1f94 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'https://www.howtogeek.com/709523/how-to-create-a-progress-bar-in-microsoft-powerpoint/ | |
Sub ProgressBar() | |
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 - 2, _ | |
X * .PageSetup.SlideWidth / .Slides.Count, 2) | |
s.Fill.ForeColor.RGB = RGB(135, 206, 235) | |
s.Line.Visible = False | |
s.Name = "PB" | |
Next X: | |
End With | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment