View Single Post
 
Old 02-19-2019, 04:29 PM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 3,977
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

You could try a macro like this
Code:
Sub PrintABunch()
  Dim i As Long, aSlide As Slide
  'ActivePresentation.SlideMaster.HeadersFooters.Footer.Text = "aaa"   'ABC0300219001
  sFoot = "ABC0300219"
  For i = 1 To 200
    For Each aSlide In ActivePresentation.Slides
      aSlide.HeadersFooters.Footer.Text = sFoot & Format(i, "000")
    Next aSlide
    ActivePresentation.PrintOut
  Next i
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote