Automate Summary Properties

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When a PPT (I use 2003) file is created, placing the cursor over the file
shows some file information. If you right click the file, select properties
There are three tabs which appear. General, Custom, and Summary. Selecting
the Summary tab gives title, subject, author (etc.) fields, which can be
manually editted. Is there any way for PPT to automatically change/edit the
AUTHOR field when a different person edits the file?
 
When a PPT (I use 2003) file is created, placing the cursor over the file
shows some file information. If you right click the file, select properties
There are three tabs which appear. General, Custom, and Summary. Selecting
the Summary tab gives title, subject, author (etc.) fields, which can be
manually editted. Is there any way for PPT to automatically change/edit the
AUTHOR field when a different person edits the file?

I don't believe so, or at least not w/o VBA code in an add-in. But I'm also
pretty sure that the Last Saved By: field on the Statistics tab will update
each time the presentation is saved. Would that do?

That seems available via macro as:

ActivePresentation.BuiltInDocumentProperties("Last author")
 
Where would I find this macro?

Steve Rindsberg said:
I don't believe so, or at least not w/o VBA code in an add-in. But I'm also
pretty sure that the Last Saved By: field on the Statistics tab will update
each time the presentation is saved. Would that do?

That seems available via macro as:

ActivePresentation.BuiltInDocumentProperties("Last author")

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
 
Where would I find this macro?

Right at the bottom of my post. That was it. ;-)
Or at least that's the line of code that'd do it.

Sub ShowMeWhoTouchedThisLast()
ActivePresentation.BuiltInDocumentProperties("Last author")
End Sub

This will explain how to use VBA code, in case you're new to this:

How do I use VBA code in PowerPoint?
http://www.rdpslides.com/pptfaq/FAQ00033.htm
 
Back
Top