G
Guest
I'm looking to number my presentations xx of yy. I found the message below which was posted on this board a few months ago. I was wandering if there was a version of it that would insert the number into a document rather than simply displaying it in a box. I'm VBA illiterate. Thanks,
tj
P.S. I saw some rather long debates about the merits of xx of yy numbering and whether or not it's appropriate in PP. Well, it's a coporte requirement here. Automating fully sure would be nice.
Sub CountSlides()
'counts number of slides:
NumbSlides = ActivePresentation.Slides.Count
'shows number in MessageBox:
MsgBox NumbSlides
End Sub
Rob
tj
P.S. I saw some rather long debates about the merits of xx of yy numbering and whether or not it's appropriate in PP. Well, it's a coporte requirement here. Automating fully sure would be nice.
I want to create a footer like "Slide # of 10" but I'd like PowerPoint to
work out the number of slides (the way Word does). Can this be done? Cheers.
Sub CountSlides()
'counts number of slides:
NumbSlides = ActivePresentation.Slides.Count
'shows number in MessageBox:
MsgBox NumbSlides
End Sub
Rob